Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater.Logging/Binary.cs 2012/05/10 13:55:44 111 +++ trunk/RomCheater.Logging/Binary.cs 2014/04/15 15:58:50 814 @@ -5,8 +5,8 @@ namespace RomCheater.Logging { - public static class Binary<T> where T : IConvertible - { + internal static class Binary<T> where T : IConvertible + { public static T ToValue(string binary) { /* NOTE: commented out types do not have a paramter for fromBase and cannot be converted to from binary or any other base*/ @@ -30,7 +30,7 @@ o = Convert.ToSByte(binary, 2); break; case "int16": // short - o = Convert.ToInt16(binary,2); + o = Convert.ToInt16(binary, 2); break; case "uint16": // ushort o = Convert.ToUInt16(binary, 2);
ViewVC Help | |
Powered by ViewVC 1.1.22 |