예제 #1
0
파일: GitParser.cs 프로젝트: oqewok/gitter
 public static void Dump(ByteString str, StringBuilder sb, Encoding encoding)
 {
     if (str != null && !str.IsEmpty)
     {
         sb.Append(str.GetString(encoding));
         str.Clear();
     }
 }
예제 #2
0
파일: GitParser.cs 프로젝트: Kuzq/gitter
 public static void Dump(ByteString str, StringBuilder sb, Encoding encoding)
 {
     if(str != null && !str.IsEmpty)
     {
         sb.Append(str.GetString(encoding));
         str.Clear();
     }
 }