Cosmos/source/Cosmos.Core_Plugs/System/Reflection/ModuleImpl.cs
2020-11-30 17:25:43 +01:00

18 lines
403 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using IL2CPU.API.Attribs;
namespace Cosmos.Core_Plugs.System.Reflection
{
[Plug(typeof(global::System.Reflection.Module))]
class ModuleImpl
{
public static string ToString(global::System.Reflection.Module aThis)
{
return "";
}
}
}