本文整理汇总了C#中Specification.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# Specification.GetType方法的具体用法?C# Specification.GetType怎么用?C# Specification.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Specification
的用法示例。
在下文中一共展示了Specification.GetType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitCog
public CoGsharp.CoG InitCog(Specification S)
{
// get cog, add references, load templates
CoGsharp.CoG cog = new CoGsharp.CoG();
cog.AddReference(S.GetType().Assembly.Location); // add reference for libg25
cog.AddReference(RefGA.BasisBlade.ZERO.GetType().Assembly.Location); // add reference for RefGA
cog.AddReference(this.GetType().Assembly.Location); // add reference for this assembly
cog.AddReference((new G25.CG.Shared.Util()).GetType().Assembly.Location); // add reference for g25_cg_shared
LoadTemplates(S, cog);
return cog;
}
示例2: WriteFunctionShortcuts
/// <summary>
/// Writes all shortcuts for 'type'.
/// </summary>
/// <param name="SB">Where the code goes.</param>
/// <param name="S">Used for namespace.</param>
/// <param name="cgd">Not used yet.</param>
/// <param name="FT">Float point type of 'type'.</param>
/// <param name="type">The type for which the function should be written.</param>
public static void WriteFunctionShortcuts(StringBuilder SB, Specification S, G25.CG.Shared.CGdata cgd, FloatType FT, G25.VariableType type)
{
Dictionary<string, List<G25.Operator>> operatorMap = S.GetOperatorMap();
Dictionary<string, bool> boundOperators = new Dictionary<string, bool>();
foreach (G25.fgs fgs in S.m_functions)
{
if ((type is G25.SMV) && fgs.IsConverter(S))
{
G25.SMV smv = (G25.SMV)type;
if (fgs.IsConverterSource(S, (G25.SMV)type, FT))
{
// write converter here . . .
//SB.AppendLine("// converter source here!");
} else if (fgs.IsConverterDestination(S, smv, FT))
{
// write converter here . . .
Converter.WriteMemberConverter(SB, S, cgd, FT, fgs, (G25.SMV)S.GetType(fgs.ArgumentTypeNames[0]), smv);
}
}
else if (fgs.GetSupportedByPlugin() && (fgs.NbArguments >= 1) && (Array.IndexOf(fgs.FloatNames, FT.type) >= 0))
{
// get function arguments
bool computeMultivectorValue = false;
G25.CG.Shared.FuncArgInfo[] FAI = null;
try
{
FAI = G25.CG.Shared.FuncArgInfo.GetAllFuncArgInfo(S, fgs, fgs.NbArguments, FT, "not set", computeMultivectorValue);
}
catch (Exception ex)
{
if ((type is G25.GMV) && (FT == S.m_floatTypes[0])) // only warn once
Console.WriteLine("Warning: cannot generate shortcut to " + fgs.ToString());
continue;
}
// if type matches, write the shortcut, and possibly an operator
if (FAI[0].TypeName.Equals(type.GetName()))
{
WriteFunctionShortcut(SB, S, cgd, FT, type, fgs, FAI);
if (S.OutputCSharpOrJava())
removeMvInterfaces(FAI); // arguments to operators need to be of the multivector type, not the multivector interface type
WriteOperatorShortcut(SB, S, cgd, FT, type, fgs, FAI, operatorMap, boundOperators);
}
}
}
}