Inlining IL
With all my playing with and learning about IL lately, I've been thinking it'd be pretty cool if I could inline some IL in my code.
Back in my C days this was very easy, inling assembler. There were times when I'd do it simply because calling it directly was quicker than what the compiler spat out.
There's certainly times in .net when the same would be useful too. A good example is like in my last post how isinst is called but the result thrown away in a call to VB's TypeOf.
I did a google search, and came up with someone who had made it possible: Mike Stall. It's limited, but functional.
Neat.
What are the chances of this making it into VS with full support? Probably slim, but it'd be cool.