Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Inside C# 4.0: dynamic typing, optional parameters, covariance and contravariance
Jan 10, 2009 at 3:19 PMif declare let#s say a COM-object as dynamic you can call it's methods, e.g.
dynamic ApplicationClass = new ApplicationClass();
wordApp.Quit();
if you'd declare it as object "wordApp.Quit();" wouldn't compile
since it not a method belonging to System.Object
Also all the stuff concerning the cacheing and analyzing done by DLR
to dynamic vars, is a probably a huge differnce in terms of performance
Chris