Cosmos/source/Cosmos.IL2CPU/Plugs/System/OutOfMemoryExceptionImpl.cs
2015-12-26 18:04:58 -06:00

10 lines
241 B
C#

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