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

Info() public method

public Info ( String source, int line, int column ) : System
source String Usually a template name. ///
line int The line number from source. ///
column int The column number from source. /// ///
return System
        public Info(String source, int line, int column)
        {
            templateName = source;
            this.line = line;
            this.column = column;
        }