mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
Some stupid warning removed for now CultureInfo Plugs merged Added VHD option (still disabled) Some temporary plugs
19 lines
394 B
C#
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 "";
|
|
}
|
|
|
|
|
|
}
|
|
}
|