Class ConvertHelper
Inheritance
System.Object
ConvertHelper
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SqlDotNet.Compiler
Assembly: SqlDotNet.dll
Syntax
public class ConvertHelper
Methods
| Improve this Doc View SourceParseDouble(String)
Declaration
public static double ParseDouble(string val)
Parameters
Type | Name | Description |
---|---|---|
System.String | val |
Returns
Type | Description |
---|---|
System.Double |
ParseFloat(String)
Declaration
public static float ParseFloat(string val)
Parameters
Type | Name | Description |
---|---|---|
System.String | val |
Returns
Type | Description |
---|---|
System.Single |
TryParseDouble(String, out Double)
Declaration
public static bool TryParseDouble(string val, out double doubleVal)
Parameters
Type | Name | Description |
---|---|---|
System.String | val | |
System.Double | doubleVal |
Returns
Type | Description |
---|---|
System.Boolean |
TryParseFloat(String, out Single)
Declaration
public static bool TryParseFloat(string val, out float floatVal)
Parameters
Type | Name | Description |
---|---|---|
System.String | val | |
System.Single | floatVal |
Returns
Type | Description |
---|---|
System.Boolean |