示例#1
0
 public static IMemberExpression Parse(string text, int start, int count)
 {
     return(MemberExpressionParser.Parse(text, start, count, message => throw new InvalidOperationException(message)));
 }
示例#2
0
 public static IMemberExpression Parse(string text, int start, int count, Action <string> onError)
 {
     return(MemberExpressionParser.Parse(text, start, count, onError));
 }
示例#3
0
 public static bool TryParse(string text, int start, int count, out IMemberExpression expression)
 {
     return((expression = MemberExpressionParser.Parse(text, start, count, null)) != null);
 }