コード例 #1
0
ファイル: NetworkTable.cs プロジェクト: 333fred/NetworkTables
 /// <summary>
 /// Saves persistent keys to a file. The server does this automatically.
 /// </summary>
 /// <param name="filename">The file name.</param>
 /// <exception cref="PersistentException">Thrown if there is an error
 /// saving the file.</exception>
 public static string SavePersistent(string filename)
 {
     return(NtCore.SavePersistent(filename));
 }
コード例 #2
0
 public void SavePersistent(string filename)
 {
     NtCore.SavePersistent(Handle, filename);
 }