Lexer.Lexer C# (CSharp) Méthode

Lexer() public méthode

public Lexer ( String f ) : System
f String
Résultat System
    public Lexer(String f)
    {
	tokens = new Queue();
	file = f;
	FileSize = file.Length;
	success = true;
    }