Reflection - Loading The Assembly

Recently, I received a question from a web visitor asking me to cover reflection.  So, I’m going to start a series on reflection.  Remember, if you have any questions you can ask me using the “Ask A Question” form.  Just look for the “Click Here to Ask A Question” button at the top of the page.

Today, we are going to cover loading the DLL…

(more…)

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Thursday, April 10th, 2008

The .NET Framework Library Source Code has been released.

 Scott just posted that the .NET Framework Source has just been released with instructions on how to get a hold of it and put it on your development computer.

(more…)

Thursday, January 17th, 2008

Parallel .NET! No Joke

I’ve been interested in parallel computing practically since I started 20 years ago.  I even theorized about how one might use web services to achieve a distributed parallel computer.  But, an official Parallel platform for .NET from Microsoft?!

This  is VERY cool and has all kinds of potential.  Especially if this can mature into something along the lines of the Linux Beowulf project.

Somasegar’s WebLog : Parallel Extensions to the .NET FX CTP

del.icio.us Tags: ,

  

Technorati Tags: ,

Thursday, November 29th, 2007

Assign Multiple Enum values to one variable.

I saw this question and immediately thought, “You can’t!  An Enum is an Integer that has been restricted to the values it can accept.”

And I was basically right.  But, I forgot that even with an integer you can do the following in CSharp:

(more…)

Friday, November 2nd, 2007