Sign In
Small place on Earth
"Imagination is more important than knowledge" - Albert Einstein
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
C#
C# 3.0
C# 4.0
code
Code Camp
dynamic
json
presentation
Redmond
Seattle
Visual Basic
Archive
Archives
January 2010
(3)
May 2009
(2)
April 2009
(1)
December 2008
(1)
November 2008
(1)
May, 2009
MSDN Blogs
>
Small place on Earth
>
May, 2009
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Small place on Earth
Compile time type vs runtime type of a variable
Posted
over 3 years ago
by
Alex Ghiondea - MSFT
1
Comments
Let’s consider this code for a moment: 1: public abstract class Animal { } 2: 3: public class Tiger : Animal { } 4: 5: public class Elephant : Animal { } 6: 7: public class MyClass 8: { 9: public static void Main() 10: { 11: Animal a = new Tiger();...
Small place on Earth
How-To: Dynamic without dynamic
Posted
over 3 years ago
by
Alex Ghiondea - MSFT
0
Comments
I am sure that by now you all heard about the new C# 4.0 feature called dynamic. In short, dynamic is the new feature in C# 4.0 that allows you to defer member binding until runtime. The way you use this feature is very straight forward. If you have...
Page 1 of 1 (2 items)