Tagged Questions
16
votes
5answers
1k views
Why is the C# compiler emitting a callvirt instruction for a GetType() method call?
I am curious to know why this is happening. Please read the code example below and the corresponding IL that was emitted in comments below each section:
using System;
class Program
{
static ...
6
votes
4answers
253 views
Typesafe Javascript
Is there a way to enforce types in JavaScript? I'm thinking of a pre-processor which takes an input file written in ActionScript 3 or Java and converts it to JS.
I do not need a big run-time ...
6
votes
3answers
325 views
Generics in VB.NET
Now, as a C# programmer, I know that generics are awesome.
However, when dabbling in some VB.NET, I discovered that the following does not cause a compiler error:
Dim instance As List(Of Integer)
...