Cosmos/source/Cosmos.System2_Plugs/System/Int32Impl.cs
José Pedro 5e51301d5c
Added tests for Convert.
Added back plugs for Decimal.
Plugged Int32.ToString(IFormatProvider).
2018-02-26 00:22:06 +00:00

50 lines
1.2 KiB
C#

using System;
using Cosmos.Common;
using IL2CPU.API.Attribs;
namespace Cosmos.System_Plugs.System
{
[Plug(Target = typeof(Int32))]
public static class Int32Impl
{
public static string ToString(ref int aThis)
{
return StringHelper.GetNumberString(aThis);
}
public static string ToString(ref int aThis, IFormatProvider aFormatProvider) => ToString(ref aThis);
public static Int32 Parse(string s)
{
const string digits = "0123456789";
Int32 result = 0;
int z = 0;
bool neg = false;
if (s.Length >= 1)
{
if (s[0] == '+') z = 1;
if (s[0] == '-')
{
z = 1;
neg = true;
}
}
for (int i = z; i < s.Length; i++)
{
Int32 ind = (Int32)digits.IndexOf(s[i]);
if (ind == -1)
{
throw new FormatException();
}
result = (Int32)((result * 10) + ind);
}
if (neg) result *= -1;
return result;
}
}
}