示例#1
0
文件: Sink.cs 项目: blinds52/More
 public abstract void Write(Encoder encoder, CharPtr ptr, UInt32 length);
示例#2
0
文件: Sink.cs 项目: blinds52/More
 //
 // ITypedSink Interface
 //
 public abstract void Write(Encoder encoder, String s, UInt32 offset, UInt32 length);
示例#3
0
文件: Sink.cs 项目: blinds52/More
 public override void Write(Encoder encoder, CharPtr ptr, UInt32 length)
 {
     throw new NotImplementedException();
 }
示例#4
0
文件: Sink.cs 项目: blinds52/More
 public override void Write(Encoder encoder, String s, UInt32 offset, UInt32 length)
 {
     throw new NotImplementedException();
 }
示例#5
0
文件: Sink.cs 项目: blinds52/More
 void Write(Encoder encoder, String s)
 {
     Write(encoder, s, 0, (uint)s.Length);
 }
示例#6
0
 public void Append(Encoder encoder, String str)
 {
     builder.Append(str);
 }