상속: System.IO.StreamWriter
예제 #1
0
파일: TomlWriter.cs 프로젝트: paiden/Nett
 public TomlWriter(FormattingStreamWriter writer, TomlConfig config)
 {
     this.writer = writer;
     this.config = config;
 }
예제 #2
0
 public TomlTableWriter(FormattingStreamWriter writer, TomlConfig config)
     : base(writer, config)
 {
     Assert(writer != null);
     Assert(config != null);
 }