Rhino.Decompiler.SourceToString C# (CSharp) Method

SourceToString() private method

private SourceToString ( int offset ) : string
offset int
return string
		private string SourceToString(int offset)
		{
			if (offset < 0 || sourceTop < offset)
			{
				Kit.CodeBug();
			}
			return new string(sourceBuffer, offset, sourceTop - offset);
		}