|
|
|
นับวันถอยหลัง asp.net คือผมทำโปรเจคอยู่ครับ คือว่าลูกค้าจะต้องชื้อแพ็คเกจจากระบบ |
|
|
|
|
|
|
|
Code (C#)
using System;
using System.Collections.Generic;
using System.Text;
namespace Console_DateTime
{
class Program
{
static void Main(string[] args)
{
System.DateTime dtTodayNoon = new System.DateTime(2006, 9, 13, 12, 0, 0);
System.DateTime dtYestMidnight = new System.DateTime(2006, 9, 12, 0, 0, 0);
System.TimeSpan diffResult = dtTodayNoon - dtYestMidnight;
Console.WriteLine("Yesterday Midnight - Today Noon = " + diffResult.Days);
Console.WriteLine("Yesterday Midnight - Today Noon = " + diffResult.TotalDays);
Console.ReadLine();
}
}
}
|
|
|
|
|
Date :
2009-07-31 15:03:50 |
By :
C# |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|