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)
MSDN Blogs
>
Small place on Earth
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Small place on Earth
Visual Basic hides virtual methods from C#? Not really!
Posted
over 2 years ago
by
Alex Ghiondea - MSFT
1
Comments
I was recently asked to investigate a potential issue about the C# to Visual Basic language inter-op. The punch line was that C# could not call a method defined in a library written in Visual Basic. However, if you used C# or Visual Basic for both assemblies...
Small place on Earth
Using the static type of a variable in a dynamic call
Posted
over 2 years ago
by
Alex Ghiondea - MSFT
0
Comments
As I said before , figuring out when the compiler will dispatch a call dynamically is simple: anytime the receiver or one of the arguments of a call is dynamic. And when using a variable of type dynamic means that the Runtime Binder will use the runtime...
Small place on Earth
When does the compiler dispatch a call dynamically?
Posted
over 2 years ago
by
Alex Ghiondea - MSFT
0
Comments
There are 2 cases when a call will be dispatched dynamically: When the receiver of the call is statically typed as dynamic 1: dynamic d = new MyClass (); 2: d.Foo(); When any of the arguments to the call are statically typed as dynamic...
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...
Small place on Earth
C# 4.0 - Dynamic internals talk
Posted
over 3 years ago
by
Alex Ghiondea - MSFT
0
Comments
Yesterday I gave a talk to the Redmond .NET user group where I talked about the C# 4.0 dynamic feature. The talk focused on how the feature is implemented and how all the pieces go together. About 30 people showed up and stayed for the 1 hour and 40...
Small place on Earth
Using Anonymous types to deserialize JSON data
Posted
over 4 years ago
by
Alex Ghiondea - MSFT
8
Comments
While I was playing around with deserializing objects written in JSON format, I noticed that I had to write a lot of classes that were used just to deserialize the JSON response. I noticed that I did not necessarily needed those classes, and that I often...
Small place on Earth
C# 4.0 language features at Seattle Code Camp
Posted
over 4 years ago
by
Alex Ghiondea - MSFT
0
Comments
I just came back from Seattle Code Camp where I gave a talk on C# 4.0. Seattle Code Camp is a community organized event where people meet and talk about code. My presentation was about the new language features we are introducing in C# 4.0. I talked...
Page 1 of 1 (8 items)