//# __________ PROTOCOL :: CONSTRUCTOR __________ #// public VmAccountOutputData(VmAccountData accountData) { AccountData = accountData; }
public static void ResetConfigurationToDefault() { JwList<VmAccount> accounts = VmSystemData.Default.Accounts; foreach( VmAccount account in accounts) { VmAccountData ad = new VmAccountData(); ad.Account = account; DirectoryInfo di = new DirectoryInfo(ad.GetAccountDataPath()); if( di.Exists ) di.Delete(true); } CloseApplication(); }