Method | Description | |
---|---|---|
IsAlphaOnly ( string line ) : bool |
This method determines if the given string contains characters only. Will return false if any numbers are in the string
|
|
IsFloat ( string line ) : bool |
Determines if the given string can be converted to a float
|
|
IsNumeric ( string line ) : bool |
Determines if the givin string is numberic, and contains only numbers
|
|
IsValidClanTag ( string line ) : bool | ||
IsValidEmail ( string email ) : bool |
This method returns whether a provided email address is valid
|
|
IsValidPID ( string pid ) : bool | ||
IsValidPrefix ( string line ) : bool |
public static IsAlphaOnly ( string line ) : bool | ||
line | string | The string to be checked |
return | bool |
public static IsFloat ( string line ) : bool | ||
line | string | The string to be checked |
return | bool |
public static IsNumeric ( string line ) : bool | ||
line | string | The string to be checked |
return | bool |
public static IsValidClanTag ( string line ) : bool | ||
line | string | |
return | bool |
public static IsValidEmail ( string email ) : bool | ||
string | ||
return | bool |
public static IsValidPID ( string pid ) : bool | ||
pid | string | |
return | bool |
public static IsValidPrefix ( string line ) : bool | ||
line | string | |
return | bool |