NVelocity.Util.Introspection.Info.ToString C# (CSharp) Method

ToString() public method

Formats a textual representation of this object as SOURCE [line X, column Y].
public ToString ( ) : String
return String
        public override String ToString()
        {
            return string.Format("{0} [line {1}, column {2}{3}", TemplateName, Line, Column, ']');
        }