NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

String.ToInt32

Converts a string to an Int32.

[Visual Basic]
Overridable Public Function ToInt32() As Integer
[C#]
public virtual int ToInt32();
[C++]
public: virtual int ToInt32();
[JScript]
public function ToInt32() : int;

Return Value

An Int32 with the value represented by value .

Remarks

Implementation is the same as ToInt32. (In addition information, see Int32, Convert and Value.)

The string is parsed as a decimal unless it is preceded by "0x", in which case it is parsed as a hexadecimal number. White space or trailing characters will cause a FormatException.

Note that if the beginning of the string value contains a properly formatted numerical value that will result in an OverflowException. In addition, if the end of the string is improperly formed, it cannot be determined whether an OverflowExceptionor a FormatException will be thrown. This has been implemented this way for performance reasons.

See Also

String Class | String Members | System Namespace