Files
linux-packaging-mono/mcs/class/System.Private.CoreLib/System.Reflection.Metadata/AssemblyExtensions.cs

8 lines
253 B
C#
Raw Normal View History

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