2017-07-20 3 views
-2

は私が持っている特定の年の2つの日付の間の日付を計算するにはどうすればよいですか?

START_DATE = 1988年4月1日 END_DATE = 2017年4月30日

どのように私は、特定の年の2日間の間に差がcalcuateことができますか? 2000年のような は365日を、2017は120日を持つでしょう。

どうすればいいですか?

+1

'(END_DATE - START_DATE).Days' –

+1

は、Googleのことを聞いたことがありますか?それはあなたが物事を見つけるのに役立ちます。あなたの質問を使用してGoogle検索(特定の年の2日間の違いを計算するにはどうすればよいですか)は、[this](https://stackoverflow.com/questions/1607336/calculate-difference-between-two-日付 - 日数)を最初のリンクとして使用します。そして、驚きの驚きは、あなたの質問に正確に答えます。 – john

答えて

1
// Define two dates. 
DateTime date1 = new DateTime(2010, 1, 1, 8, 0, 15); 
DateTime date2 = new DateTime(2010, 8, 18, 13, 30, 30); 
// Calculate the interval between the two dates. 
TimeSpan interval = date2 - date1; 
Console.WriteLine("{0} - {1} = {2}", date2, date1, interval.ToString()); 
// Display individual properties of the resulting TimeSpan object. 
Console.WriteLine(" {0,-35} {1,20}", "Value of Days Component:", interval.Days); 
Console.WriteLine(" {0,-35} {1,20}", "Total Number of Days:", interval.TotalDays); 
Console.WriteLine(" {0,-35} {1,20}", "Value of Hours Component:", interval.Hours); 
Console.WriteLine(" {0,-35} {1,20}", "Total Number of Hours:", interval.TotalHours); 
Console.WriteLine(" {0,-35} {1,20}", "Value of Minutes Component:", interval.Minutes); 
Console.WriteLine(" {0,-35} {1,20}", "Total Number of Minutes:", interval.TotalMinutes); 
Console.WriteLine(" {0,-35} {1,20:N0}", "Value of Seconds Component:", interval.Seconds); 
Console.WriteLine(" {0,-35} {1,20:N0}", "Total Number of Seconds:", interval.TotalSeconds); 
Console.WriteLine(" {0,-35} {1,20:N0}", "Value of Milliseconds Component:", interval.Milliseconds); 
Console.WriteLine(" {0,-35} {1,20:N0}", "Total Number of Milliseconds:", interval.TotalMilliseconds); 
Console.WriteLine(" {0,-35} {1,20:N0}", "Ticks:", interval.Ticks); 

// the example displays the following output: 
//  8/18/2010 1:30:30 PM - 1/1/2010 8:00:15 AM = 229.05:30:15 
//   Value of Days Component:        229 
//   Total Number of Days:     229.229340277778 
//   Value of Hours Component:        5 
//   Total Number of Hours:     5501.50416666667 
//   Value of Minutes Component:       30 
//   Total Number of Minutes:      330090.25 
//   Value of Seconds Component:       15 
//   Total Number of Seconds:      19,805,415 
//   Value of Milliseconds Component:      0 
//   Total Number of Milliseconds:    19,805,415,000 
//   Ticks:        198,054,150,000,000 
0
static void Main(string[] args) 
{ 
    DateTime startDate = new DateTime(1988, 4, 1); 
    DateTime endDate = new DateTime(2017, 4, 30); 
    TimeSpan diff = endDate - startDate; 
    Console.WriteLine("Difference in days between two days: " + diff.TotalDays); 

    int year = 2000; 
    int daysInFeb = DateTime.DaysInMonth(year, 2); 
    int daysInYear = DateTime.IsLeapYear(year) ? 366 : 365; 
    Console.WriteLine("Days in February " + year + ": " + daysInFeb); 
    Console.WriteLine("Days in Year " + year + ": " + daysInYear); 

    Console.ReadKey(); 

    // Outputs: 

    // Difference in days between two days: 10621 
    // Days in February 2000: 29 
    // Days in Year 2000: 366 
} 
関連する問題