e3d7b54ca3
Former-commit-id: bb0edac46772972b4c99a84b8e1791f43b9195f5
12 lines
340 B
C#
12 lines
340 B
C#
|
|
public class MainClass
|
|
{
|
|
public static void Main()
|
|
{
|
|
System.Console.WriteLine("This should output (depending in your locales) something like:");
|
|
System.Console.WriteLine("\"Thursday, 27 May 2004 22:14:01\"");
|
|
System.Console.WriteLine("Actual Output:");
|
|
System.Console.WriteLine("\""+System.DateTime.Now.ToString("F")+"\"");
|
|
}
|
|
}
|