sq / JSIL

CIL to Javascript Compiler

Home Page:http://jsil.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DateTime Object does not implement public functions

tosandeepgarg opened this issue · comments

DateTime object does not have most of the public methods available. For example all Add methods like Add,AddDays, AddMonths, AddYears etc.
Here is test case.

using System;

public static class Program
{
    public static void Main(string[] args)
    {
        var s = DateTime.Now;
        Console.WriteLine(s.AddDays(1));
    }
}