Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/Plugs/System/OutOfMemoryExceptionImpl.cs
mterwoord_cp c89d625a1c
2009-10-19 08:28:04 +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) {
//
}
}
}