Cosmos/source2/IL2CPU/Cosmos.IL2CPU/Plugs/System/OutOfMemoryExceptionImpl.cs
kudzu_cp 2249797e61
2012-08-13 00:39:42 +00:00

14 lines
348 B
C#

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