Cosmos/source/Cosmos.Core_Plugs/System/Reflection/RuntimeAssemblyImpl.cs

15 lines
563 B
C#

using System;
using IL2CPU.API.Attribs;
namespace Cosmos.Core_Plugs.System.Reflection
{
[Plug("System.Reflection.RuntimeAssembly, System.Private.CoreLib")]
class RuntimeAssemblyImpl
{
[PlugMethod(Signature = "System_Void__System_Reflection_RuntimeAssembly_GetFullName_System_Runtime_CompilerServices_QCallAssembly__System_Runtime_CompilerServices_StringHandleOnStack_")]
public static void GetFullName(object aQCallAssembly, object aStringHandleOnStack)
{
throw new NotImplementedException();
}
}
}