8 lines
253 B
C#
8 lines
253 B
C#
|
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 ();
|
||
|
}
|
||
|
}
|