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