Microsoft.CodeAnalysis.Sarif.Region.Init C# (CSharp) Method

Init() private method

private Init ( int startLine, int startColumn, int endLine, int endColumn, int offset, int length ) : void
startLine int
startColumn int
endLine int
endColumn int
offset int
length int
return void
        private void Init(int startLine, int startColumn, int endLine, int endColumn, int offset, int length)
        {
            StartLine = startLine;
            StartColumn = startColumn;
            EndLine = endLine;
            EndColumn = endColumn;
            Offset = offset;
            Length = length;
        }
    }