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)
January, 2010
MSDN Blogs
>
Small place on Earth
>
January, 2010
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...
Page 1 of 1 (3 items)