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