Cosmos/source/Indy.IL2CPU/CustomImplementation/System/ArgumentOutOfRangeExceptionImpl.cs
Dokugogagoji_cp 24c47639ca ACPIManager stub
Some stupid warning removed for now
CultureInfo Plugs merged
Added VHD option (still disabled)
Some temporary plugs
2009-03-22 12:56:47 +00:00

19 lines
394 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Plugs;
namespace Indy.IL2CPU.CustomImplementation
{
[Plug(Target = typeof(ArgumentOutOfRangeException))]
public static class ArgumentOutOfRangeExceptionImpl
{
public static String get_Message()
{
return "";
}
}
}