Attributes.SourceContextAttribute.SourceContextAttribute C# (CSharp) Method

SourceContextAttribute() public method

Constructor for SourceContextAttribute
public SourceContextAttribute ( string file, int startLine, int endLine )
file string Pathname of the foreign source code file
startLine int Starting line of the foreign statement
endLine int Ending line of the foreign statement
            public SourceContextAttribute(string file, int startLine, int endLine)
            {
                this.file = file;
                this.startLine = startLine;
                this.endLine = endLine;
            }