mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
- Removed GetHashCode() methods that were not really needed - Plugged class CultureInfo for GetHashCode() - Plugged class Runtime.CompilerServices for GetHashCode() - Plugged class RuntimeTypeImpl for GetHashCode() - Fixed tests that were failing using true .NET GetHashCode() - Fixed IL Interpreter added SHIFT, AND, XOR... for sbyte and short
49 lines
No EOL
1.1 KiB
C#
49 lines
No EOL
1.1 KiB
C#
using System;
|
|
|
|
using Cosmos.Common;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
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 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;
|
|
}
|
|
}
|
|
} |