Initialization of dynamic in C#

//Initialized by any type
dynamic d = "some string";
d = 3.14;
d = new[] {2, 3, 5};
d = new CultureInfo("ru");