本文整理汇总了C#中TemplateParameterSubstitutionType类的典型用法代码示例。如果您正苦于以下问题:C# TemplateParameterSubstitutionType类的具体用法?C# TemplateParameterSubstitutionType怎么用?C# TemplateParameterSubstitutionType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TemplateParameterSubstitutionType类属于命名空间,在下文中一共展示了TemplateParameterSubstitutionType类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TemplateParameterSubstitutionType
protected TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal* native, bool isInternalImpl = false)
: base((CppSharp.Parser.AST.Type.Internal*) native)
{
}
示例2: __CopyValue
private static TemplateParameterSubstitutionType.Internal* __CopyValue(TemplateParameterSubstitutionType.Internal native)
{
var ret = Marshal.AllocHGlobal(24);
CppSharp.Parser.AST.TemplateParameterSubstitutionType.Internal.cctor_2(ret, new global::System.IntPtr(&native));
return (TemplateParameterSubstitutionType.Internal*) ret;
}
示例3: TemplateParameterSubstitutionType
protected TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal* native, bool skipVTables = false)
: base((CppSharp.Parser.AST.Type.Internal*) null)
{
__PointerAdjustment = 0;
if (native == null)
return;
__Instance = new global::System.IntPtr(native);
}
示例4: __CreateInstance
public static TemplateParameterSubstitutionType __CreateInstance(TemplateParameterSubstitutionType.Internal native)
{
return new TemplateParameterSubstitutionType(native);
}
示例5: TemplateParameterSubstitutionType
private TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.__Internal native, bool skipVTables = false)
: this(__CopyValue(native), skipVTables)
{
__ownsNativeInstance = true;
NativeToManagedMap[__Instance] = this;
}
示例6: __CreateInstance
public static TemplateParameterSubstitutionType __CreateInstance(TemplateParameterSubstitutionType.Internal native, bool skipVTables = false)
{
return new TemplateParameterSubstitutionType(native, skipVTables);
}
示例7: __CopyValue
private static void* __CopyValue(TemplateParameterSubstitutionType.__Internal native)
{
var ret = Marshal.AllocHGlobal(16);
global::CppSharp.Parser.AST.TemplateParameterSubstitutionType.__Internal.cctor_2(ret, new global::System.IntPtr(&native));
return ret.ToPointer();
}
示例8: TemplateParameterSubstitutionType
internal TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal native)
: this(&native)
{
}
示例9: TemplateParameterSubstitutionType
private TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal native)
: this(__CopyValue(native))
{
__ownsNativeInstance = true;
}
示例10: TemplateParameterSubstitutionType
internal TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal native)
: this(__CopyValue(native))
{
}