例 次の例では、 メソッドを AddDays 使用して、現在の日付から 36 日後の曜日を決定します。 using namespace System; int main() { // Calculate what day of the week is 36 days from this instant. DateTime today = System::DateTime::Now; DateTime answer = today.AddDays( 36 ); Console::WriteLine("Today: {0:dddd}", today); Console::WriteLine("36 days from today: {0:dddd}", answer); } // The example displays output like the following: // Today: