Mono.TextTemplating.Tokeniser.Tokeniser C# (CSharp) Method

Tokeniser() public method

public Tokeniser ( string fileName, string content ) : System
fileName string
content string
return System
		public Tokeniser (string fileName, string content)
		{
			State = State.Content;
			this.content = content;
			this.Location = this.nextStateLocation = this.nextStateTagStartLocation = new Location (fileName, 1, 1);
		}