AssemblyExtensions.cs 253 B

12345678
  1. namespace System.Reflection.Metadata
  2. {
  3. public static class AssemblyExtensions
  4. {
  5. [CLSCompliant(false)]
  6. public static unsafe bool TryGetRawMetadata(this Assembly assembly, out byte* blob, out int length) => throw new NotImplementedException ();
  7. }
  8. }