fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8. }
  9. }
  10.  
Success #stdin #stdout 0.04s 19700KB
stdin
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Problemex1_1
{
    class Program
    {
        static void Main(string[] args)
        {
            Sample s = new Sample();
            s.foo();
        }
    }
}
stdout
Standard output is empty