Cosmos/source/Cosmos.Core_Plugs/System/OutOfMemoryExceptionImpl.cs
2017-12-10 15:57:12 +00:00

12 lines
270 B
C#

using System;
using IL2CPU.API;
using IL2CPU.API.Attribs;
namespace Cosmos.Core_Plugs.System {
[Plug(Target=typeof(OutOfMemoryException))]
public static class OutOfMemoryExceptionImpl {
public static void Ctor(OutOfMemoryException aThis) {
//
}
}
}