コード例 #1
0
ファイル: InteropExtensions.cs プロジェクト: yuxi214/mono
 public static int GetElementSize(this Array array)
 {
     if (array == null)
     {
         throw new ArgumentNullException(nameof(array));
     }
     return(Marshal.GetArrayElementSize(array.GetType()));
 }
コード例 #2
0
ファイル: Array.cs プロジェクト: sluckywhh/mono
 internal int GetElementSize()
 {
     return(Marshal.GetArrayElementSize(GetType()));
 }