Skip to content

Instantly share code, notes, and snippets.

@kumpera
Created December 14, 2009 16:54
Show Gist options
  • Save kumpera/256210 to your computer and use it in GitHub Desktop.
Save kumpera/256210 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Dynamic;
namespace ConsoleTest
{
public class Program
{
public static void Main(string[] args)
{
dynamic x = 5;
Console.WriteLine(x);
Console.WriteLine("\nEnd");
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment