public static void Main()
long yourDateTicks = DateTime.Now.Ticks;
int day = new DateTime(yourDateTicks).Day;
int month = new DateTime(yourDateTicks).Month;
int year = new DateTime(yourDateTicks).Year;
DateTime bcDate = new DateTime(bcYear, month, day);
String bcDateFormat = bcDate .ToString("yyyy-MM-dd");
Console.WriteLine(bcDateFormat);