ExpressionNode.ConvertToIntWithCheck 메서드
Converts the specified string to an integer.
네임스페이스: Microsoft.SqlServer.Management.Dmf
어셈블리: Microsoft.SqlServer.Dmf(Microsoft.SqlServer.Dmf.dll)
구문
‘선언
Protected Shared Function ConvertToIntWithCheck ( _
value As String _
) As Integer
‘사용 방법
Dim value As String
Dim returnValue As Integer
returnValue = ExpressionNode.ConvertToIntWithCheck(value)
protected static int ConvertToIntWithCheck(
string value
)
protected:
static int ConvertToIntWithCheck(
String^ value
)
static member ConvertToIntWithCheck :
value:string -> int
protected static function ConvertToIntWithCheck(
value : String
) : int
매개 변수
- value
유형: System.String
A String value that specifies the value in string format.
반환 값
유형: System.Int32
A Int32 object value that specifies the result of the conversion.
주의
This allows you to create a filter node based on the object or group of objects that are defined by the expression node.
예
C#
FilterNode fnode = node.ExpressionNode.ConvertToFilterNode();