E-mail
From msdn.
// i is compiled as an int
var i = 5;
// s is compiled as a string
var s = "Hello";
// a is compiled as int[]
var a = new[] { 0, 1, 2 };
// person is compiled as an anonymous type
var person = new { Name = "Terry", Age = 34 };
var v = new { Amount = 108, Message = "Hello" };
Anonymous types provide a convenient way to encapsulate a set of read-only properties into a single object without having to first explicitly define a type
Remember Me
a@href@title, strike