Cosmos/source/Compiler/Indy.IL2CPU.X86.Plugs/System/OutOfMemoryExceptionImpl.cs
mterwoord_cp e3c2894805
2009-09-14 15:15:48 +00:00

14 lines
344 B
C#

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