コード例 #1
0
ファイル: Chapter8Union.cs プロジェクト: largesky/dotnetlearn
 public static extern bool Ch8ModifyCh8StructWithUnionCh8Sample([In, Out] Ch8StructWithUnionCh8Sample value);
コード例 #2
0
ファイル: Chapter8Union.cs プロジェクト: largesky/dotnetlearn
 public static void Ch8ModifyCh8StructWithUnionCh8Sample()
 {
     var  value = new Ch8StructWithUnionCh8Sample();
     bool ret   = Ch8Native.Ch8ModifyCh8StructWithUnionCh8Sample(value);
 }