System.Linq.Dynamic.Scanner.GetToken C# (CSharp) Méthode

GetToken() public méthode

public GetToken ( TokenType type ) : Token
type TokenType
Résultat Token
		public Token GetToken(TokenType type)
		{
			var t = new Token(StartPos, EndPos) { Type = type };
			return t;
		}