| Structure | Conversion Method |
| Decimal | static decimal Parse(string str) |
| Double | static double Parse(string str) |
| Single | static float Parse(string str) |
| Int64 | static long Parse(string str) |
| Int32 | static int Parse(string str) |
| Int16 | static short Parse(string str) |
| UInt64 | static ulong Parse(string str) |
| UInt32 | static uint Parse(string str) |
| UInt16 | static ushort Parse(string str) |
| Byte | static byte Parse(string str) |
| SByte | static sbyte Parse(string str) |