Skip to main content

Strings

References

 

Date Formatting (V8)

Ensure where ever a date is displayed to the user that it is done according to system setup / user preference:

public string CurrentDate
{
    get
    {
        return DateTime.Now.ToDateTime_Format();
    }
}

TODO : ToSafeString?

Any other extensions we can use/expand on