コード例 #1
0
ファイル: EncodingCharacters.cs プロジェクト: OSEHRA/mdo
 /** copies contents of "other" */
 public EncodingCharacters(EncodingCharacters other)
 {
     FieldSeparator = other.FieldSeparator;
     this.encChars = new char[4];
     ComponentSeparator = other.ComponentSeparator;
     RepetitionSeparator = other.RepetitionSeparator;
     EscapeCharacter = other.EscapeCharacter;
     SubcomponentSeparator = other.SubcomponentSeparator;
 }