Convert a string to an integer


Namespace: PalmSens.DataFiles
Assembly: PalmSens (in PalmSens.dll)

Syntax

Visual Basic (Declaration)
Protected Function ToInt( _ 
   ByVal s As String _ 
) As Integer
C#
protected int ToInt(
   string s
)
C++
protected:
 int ToInt(
   String s
) sealed 
J#
protected int ToInt(
   string s
)
JScript
protected  function ToInt(
   s : String
) : int

Parameters

s
string to convert

Return Value

corresponding integer value or 0 if no conversion was possible

See Also