Preferred Language:

Listing 15.10 - ServerTime.cs

Listing 15.10 - ServerTime.cs (C#)
Copy

using System;

public class ServerTime
{
    public string CurrentTime
    {
        get 
        {
            return DateTime.Now.ToString();
        }
    }
}