System.ParseNumbers.StringToInt C# (CSharp) Méthode

StringToInt() public static méthode

public static StringToInt ( string value, int fromBase, int flags ) : int
value string
fromBase int
flags int
Résultat int
		public static int StringToInt (string value, int fromBase, int flags)
		{
			unsafe {
				return StringToInt (value, fromBase, flags, null);
			}
		}

Same methods

ParseNumbers::StringToInt ( string value, int fromBase, int flags, int parsePos ) : int

Usage Example

Exemple #1
0
 public unsafe static int StringToInt(string s, int radix, int flags, ref int currPos)
 {
     fixed(int *ptr = &currPos)
     {
         return(ParseNumbers.StringToInt(s, radix, flags, ptr));
     }
 }
All Usage Examples Of System.ParseNumbers::StringToInt