InteropExtensions.cs 293 B

123456789101112131415
  1. namespace System.Runtime.InteropServices
  2. {
  3. public static class InteropExtensions
  4. {
  5. public static bool IsBlittable (this object obj)
  6. {
  7. throw new NotImplementedException ();
  8. }
  9. public static int GetElementSize (this Array array)
  10. {
  11. throw new NotImplementedException ();
  12. }
  13. }
  14. }