Sign In
Chris Burrows' [Old] Blog
C#, developer tools, abstract nonsense, etc.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
arrays
C#
DLR
dynamic
events
IronPython
IronRuby
PDC
performance
threading
VS2010
Browse by Tags
MSDN Blogs
>
Chris Burrows' [Old] Blog
>
All Tags
>
dynamic
Tagged Content List
Blog Post:
On Dynamic Objects and DynamicObject
cburrows
As you know if you read my blog, C# 4.0 introduced some language features that help you consume dynamic objects. Although it’s not part of the language, most of the writing about dynamic in C# that I have seen, including my own, also contains some point about how you create dynamic objects. And they...
on
18 Oct 2010
Blog Post:
Errata: dynamic conversions and overload resolution
cburrows
When you stand up and tell the world how your software is supposed to behave a full year or more before you’re done working on it, a funny thing can sometimes happen. You can change your mind. And therefore be wrong by the time the software ships. And so it is with dynamic. Shortly after PDC ’08,...
on
1 Apr 2010
Blog Post:
MSDN Channel 9 Video on Dynamic
cburrows
About a month ago, Sam Ng and I sat down with Charlie Calvert and his video camera to record an interview-style video about dynamic. Have a look! http://channel9.msdn.com/posts/CharlieCalvert/CSharp-4-Dynamic-with-Chris-Burrows-and-Sam-Ng/ If you view it, I hope you find it helpful and informative. Also...
on
22 Sep 2009
Blog Post:
Dynamic type parameter constraints in C# 4
cburrows
What we know already So we talked about how you can define a class that has a base class that involves dynamic, such as // This is OK! class Derived : Base<dynamic> { } although you cannot use dynamic alone as a base class. And we talked about how you cannot define a class that implements...
on
4 Sep 2009
Blog Post:
Dynamic base classes in C# 4
cburrows
Ok, where were we? We have this new type called dynamic, and it’s used to tell the compiler to defer binding until runtime. We can construct other types with it as usual, and therefore use dynamic[], IEnumerable<dynamic>, List<dynamic>, and so on. But last time , in answer to the entirely...
on
22 Apr 2009
Blog Post:
C# “dynamic,” Part VII
cburrows
It has been a while since I posted anything here, and I have the same excuse everyone else does. Work, holidays, and generally being pretty busy. But enough of that, it’s February (!!!) and that means we’re getting closer to shipping C# 4.0 and dynamic and making all of this a much less abstract exercise...
on
4 Feb 2009
Blog Post:
C# "dynamic," Part VI
cburrows
[Update March 31, 2010: MUCH OF THIS HAS CHANGED SINCE PRE-RELEASE VERSION OF DYNAMIC. SEE THIS POST ] We left off last time with this piece of code public class C { public static void M(int i) { } public static void M(string s) { } } ... dynamic d = GetSomeD(); C.M(d); ...together with...
on
14 Nov 2008
Blog Post:
C# "dynamic," Part V
cburrows
[Update March 31, 2010: MUCH OF THIS HAS CHANGED SINCE PRE-RELEASE VERSION OF DYNAMIC. SEE THIS POST ] Let's look at this: dynamic d = null; object o = d; // not an implicit conversion Last time , I said that the conversion on the second line is not an implicit conversion. If you know C# already...
on
11 Nov 2008
Blog Post:
C# "dynamic," Part IV
cburrows
Today, let's geek out about the language design regarding the dynamic type. Type in the language vs. Type in the runtime One thing that lots of people already know is that when you say "dynamic" in code, you can think of it as "System.Object" in your assembly, because that's how the compiler emits...
on
6 Nov 2008
Blog Post:
Channel 9 Video on C# 4
cburrows
I'm a little backlogged at work right now, and I'll get back to some dynamic posts as soon as I can. In the meantime, Eric , Sam , Mads , and I talked with Channel 9 last week, and the video has just been posted. I look forward to watching it myself! Here's hoping I haven't said anything too embarrassing...
on
31 Oct 2008
Blog Post:
C# "dynamic," Part III
cburrows
Here are a few good resources that you ought to look at for information about dynamic from PDC: Anders Hejlsberg's talk, "The Future of C#" - Among other things, this talk is a great introduction to dynamic. I recommend it highly! There are some good demos, and Anders' presentation is very...
on
28 Oct 2008
Blog Post:
C# "dynamic," Part II
cburrows
Yesterday, I made an attempt to introduce the C# dynamic feature by describing what change there has been to the language, what scenarios we hope to affect by that change, and some overview of what dynamic operations look like in C# 4 as it stands in the preview distributed at PDC 2008. One thing...
on
28 Oct 2008
Blog Post:
C# "dynamic"
cburrows
PDC 2008 arrives today, and that means that I am finally able to talk publicly about some of the things I've been working on for the next version of C#. What a relief! I am excited for the world to see some of this stuff, and to start receiving more customer feedback about it. This afternoon, Anders...
on
27 Oct 2008
Page 1 of 1 (13 items)