Ejemplo n.º 1
0
 internal InternalHighlightRawInfo(String Text, int StartLineNumber,
                                   IndentionOption IndOption, int[] Offsets = null)
 {
     this.Text            = Text;
     this.StartLineNumber = StartLineNumber;
     this.Offsets         = Offsets;
     this.IndOption       = IndOption;
 }
Ejemplo n.º 2
0
 internal InternalHighlightRawInfo(String fullFilePath, String Text, int StartLineNumber, 
     IndentionOption IndOption, int[] Offsets = null)
 {
     this.FullFilePath = fullFilePath;
     this.Text = Text;
     this.StartLineNumber = StartLineNumber;
     this.Offsets = Offsets;
     this.IndOption = IndOption;
 }