Ejemplo n.º 1
0
 public static string WritePrintableToString(IEDNWritable printable, IWriteHandler handler)
 {
     using (MemoryStream ms = new MemoryStream())
     {
         printable.WriteEDN(ms, handler);
         ms.Position = 0;
         var sr = new StreamReader(ms);
         return sr.ReadToEnd();
     }
 }
Ejemplo n.º 2
0
 public static string WritePrintableToString(IEDNWritable printable, IWriteHandler handler)
 {
     using (MemoryStream ms = new MemoryStream())
     {
         printable.WriteEDN(ms, handler);
         ms.Position = 0;
         var sr = new StreamReader(ms);
         return(sr.ReadToEnd());
     }
 }