Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > dotnet clr > march 2006 > threads for march 1 - 7, 2006

Filter by week: 1 2 3 4 5

Compress Files
Posted by Amelyan at 3/7/2006 11:30:29 AM
I have a bunch of files I need to put into Compressed (zipped) Folder, MyFiles.zip file, similarly to what Windows XP does when you send files to compressed zipped folder. What is the simplest way to compress these files into a .zip? I found System.IO.Compression, but I am not sure how to ...more >>

Can CLR 1.1 and CLR 2.0 run in the same app?
Posted by Brian R. at 3/6/2006 5:19:27 PM
Is it possible to run two versions of the CLR in the same application? The framework of our application was developed in 2003 under CLR 1.1 and some of our plugins were developed in VS 2005 and need the 2.0. The 2003 components experience problems when running with the 2.0 CLR only. I hav...more >>

Using Reflection to Get Inherited types
Posted by source at 3/6/2006 11:08:37 AM
I am tyring to get inhertied members of a type using relfection, but i am not able to do it. What bindingflags do I need to use to get inhertied members. Any pointers will help source ...more >>

Why does compiler emit NOP instructions?
Posted by Peter Rilling at 3/4/2006 10:11:42 PM
Hi. Not too long I had to use Reflection.Emit to dynamically generate some classes that were only to be dynamically generated based on runtime conditions. Before emitting the op codes, I created a class and compiled it, then reviewed the op codes using Reflector. Well, I noticed the c...more >>

polymorphism
Posted by Michał Januszczyk at 3/3/2006 1:16:27 AM
is there any way to make Animal.Foo() being called ?? //============================== namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Animal z = new Mouse(); z.DoSth(); } } class An...more >>

Event handlers and memory usage
Posted by 6tc1 NO[at]SPAM qlink.queensu.ca at 3/2/2006 1:33:34 PM
Hi all, I'm inquiring about the mechanism that is used to implement event handlers in .NET (not really relevant, but I'm using C#). Anyway, I've noticed that I can pass an object in an event argument and if the receiver (event handler) of that event changes any of the properties in that object, ...more >>

Is it bad to throw the exception caught, un-alterered?
Posted by NB at 3/2/2006 5:21:36 AM
Hi all, This thing came up while discussing on the practices for Exception Handling. One of my freinds has strong feeling to not to do soomething like: try { // try something } catch (Exception ex) { throw(ex); } I was told that catching and throwing the same exception is B...more >>



DevelopmentNow Blog