'宣言 Public Shared Sub TryParse( _ ByVal s As System.String, _ ByRef isExpression As System.Boolean, _ ByRef value As System.Object, _ ByRef expression As System.String _ )
public static void TryParse( System.string s, out System.bool isExpression, out System.object value, out System.string expression )
パラメータ
- s
- 解析する文字列。
- isExpression
- OUT: 文字列が式を表す場合は true、そうでない場合は false。
- value
- OUT: isExpression が false の場合はオブジェクト(文字列)。
- expression
- OUT: isExpression が true の場合は式。