當前位置: 首頁>>代碼示例>>C#>>正文


C# AttributedType類代碼示例

本文整理匯總了C#中AttributedType的典型用法代碼示例。如果您正苦於以下問題:C# AttributedType類的具體用法?C# AttributedType怎麽用?C# AttributedType使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


AttributedType類屬於命名空間,在下文中一共展示了AttributedType類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AttributedType

 protected AttributedType(AttributedType.Internal* native, bool isInternalImpl = false)
     : base((CppSharp.Parser.AST.Type.Internal*) native)
 {
 }
開發者ID:RainsSoft,項目名稱:CppSharp,代碼行數:4,代碼來源:AST.cs

示例2: __CopyValue

 private static AttributedType.Internal* __CopyValue(AttributedType.Internal native)
 {
     var ret = Marshal.AllocHGlobal(40);
     CppSharp.Parser.AST.AttributedType.Internal.cctor_2(ret, new global::System.IntPtr(&native));
     return (AttributedType.Internal*) ret;
 }
開發者ID:RainsSoft,項目名稱:CppSharp,代碼行數:6,代碼來源:AST.cs

示例3: AttributedType

 protected AttributedType(AttributedType.Internal* native, bool skipVTables = false)
     : base((CppSharp.Parser.AST.Type.Internal*) null)
 {
     __PointerAdjustment = 0;
     if (native == null)
         return;
     __Instance = new global::System.IntPtr(native);
 }
開發者ID:CSRedRat,項目名稱:CppSharp,代碼行數:8,代碼來源:AST.cs

示例4: __CreateInstance

 public static AttributedType __CreateInstance(AttributedType.Internal native)
 {
     return new AttributedType(native);
 }
開發者ID:RainsSoft,項目名稱:CppSharp,代碼行數:4,代碼來源:AST.cs

示例5: __CreateInstance

 public static AttributedType __CreateInstance(AttributedType.Internal native, bool skipVTables = false)
 {
     return new AttributedType(native, skipVTables);
 }
開發者ID:CSRedRat,項目名稱:CppSharp,代碼行數:4,代碼來源:AST.cs

示例6: __CopyValue

 private static void* __CopyValue(AttributedType.__Internal native)
 {
     var ret = Marshal.AllocHGlobal(24);
     global::CppSharp.Parser.AST.AttributedType.__Internal.cctor_2(ret, new global::System.IntPtr(&native));
     return ret.ToPointer();
 }
開發者ID:ddobrev,項目名稱:CppSharp,代碼行數:6,代碼來源:CppSharp.CppParser.cs

示例7: AttributedType

 internal AttributedType(AttributedType.Internal native)
     : this(&native)
 {
 }
開發者ID:kidleon,項目名稱:CppSharp,代碼行數:4,代碼來源:AST.cs

示例8: AttributedType

 private AttributedType(AttributedType.Internal native)
     : this(__CopyValue(native))
 {
     __ownsNativeInstance = true;
 }
開發者ID:KonajuGames,項目名稱:CppSharp,代碼行數:5,代碼來源:AST.cs

示例9: AttributedType

 internal AttributedType(AttributedType.Internal native)
     : this(__CopyValue(native))
 {
 }
開發者ID:vovkasm,項目名稱:CppSharp,代碼行數:4,代碼來源:AST.cs


注:本文中的AttributedType類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。