L Lukasi Client Регистрация 13.11.2013 Сообщения 2 Благодарностей 0 Баллы 1 14.11.2013 #1 How to write filename with current date ? For example 14-11-2013.txt I can get moth with {-TimeNow.month-} but need day...better year
How to write filename with current date ? For example 14-11-2013.txt I can get moth with {-TimeNow.month-} but need day...better year
bigcajones Client Регистрация 09.02.2011 Сообщения 1 216 Благодарностей 683 Баллы 113 14.11.2013 #2 use c# action... Код: DateTime now = DateTime.Now; string format = "MM-dd-yyyy"; return now.ToString(format); Реакции: 123456
use c# action... Код: DateTime now = DateTime.Now; string format = "MM-dd-yyyy"; return now.ToString(format);