writeXml() public static méthode

public static writeXml ( object value ) : string
value object
Résultat string
Exemple #1
0
 // Token: 0x06000107 RID: 263 RVA: 0x00006AE0 File Offset: 0x00004CE0
 public static void writeXml(object value, Stream stream)
 {
     using (StreamWriter streamWriter = new StreamWriter(stream))
     {
         streamWriter.Write(Plist.writeXml(value));
     }
 }
Exemple #2
0
 // Token: 0x06000106 RID: 262 RVA: 0x00006AA0 File Offset: 0x00004CA0
 public static void writeXml(object value, string path)
 {
     using (StreamWriter streamWriter = new StreamWriter(path))
     {
         streamWriter.Write(Plist.writeXml(value));
     }
 }