Exemple #1
0
 // Deep copy constructor.
 internal IniComment(IniComment source)
 {
     this.text = source.text;
     this.type = source.type;
     this.EmptyLinesBefore = source.EmptyLinesBefore;
     this.LeftIndentation = source.LeftIndentation;
 }
 // Deep copy constructor.
 internal IniComment(IniComment source)
 {
     this.text             = source.text;
     this.type             = source.type;
     this.EmptyLinesBefore = source.EmptyLinesBefore;
     this.LeftIndentation  = source.LeftIndentation;
 }
Exemple #3
0
 internal IniComment(IniCommentType type) { this.type = type; }
 internal IniComment(IniCommentType type)
 {
     this.type = type;
 }