Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Backup File
- public string GetBackupFileName() {
- DateTime n = DateTime.Now;
- string fName = n.Year
- + "_" + n.Month
- + "_" + n.Day
- + "_" + n.Hour
- + "" + n.Minute
- + "" + n.Second
- + "" + n.Millisecond;
- return "ConnectionData_" + fName + ".xml";
- }
Advertisement
Add Comment
Please, Sign In to add comment