NSDictionary.cs 228 B

1234567891011
  1. using System;
  2. namespace Veldrid.MetalBindings
  3. {
  4. public struct NSDictionary
  5. {
  6. public readonly IntPtr NativePtr;
  7. public UIntPtr count => ObjectiveCRuntime.UIntPtr_objc_msgSend(NativePtr, "count");
  8. }
  9. }