예제 #1
0
 public static void WriteAllString(this IStorageObject obj, string value)
 {
     using (var stream = obj.OpenWrite()) {
         using (var tw = new StreamWriter(stream)) {
             tw.Write(value);
         }
     }
 }