all groups > dotnet clr > december 2006
WaitHandles must be less than or equal to 64 - missing documentation
Posted by Loy at 12/24/2006 2:12:23 AM
Calling WaitAll with array of 64 or more causes exception
WaitHandle.WaitAll(whaWaitHandlesArray);
System.NotSupportedException: The number of WaitHandles must be less
than or equal to 64.
at System.Threading.WaitHandle.WaitAll(WaitHandle[] waitHandles,
Int32 millisecondsTimeout, Boolean e... more >>
What's with the new C++/CLI pointers (handles ^)? Managed C++.NET
Posted by raylopez99 at 12/18/2006 7:03:48 AM
Please comment on the following code fragment. Note the "WHY"?
Particularly, (1) why does referencing and dereferencing a pointer give
the same thing (at least in WriteLine(), which might be some sort of
cast going on behind the scenes), (2) why doesn't the pointer "stick
to" a reference, such ... more >>
How do OS loads CLR
Posted by Deepabh at 12/12/2006 1:57:31 AM
Hi.
I want to know how do OS differentiate an exe created by Visual Studio
6.0 or Visual Studio .Net ?? And if multipule versions of CLR are
there, how do it loads the required version.
Thanks in adv
Deepabh
... more >>
Good source
Posted by WELCOME ### at 12/8/2006 12:00:00 AM
What's good source that I can read about " "Controls" ,usage and designing?
Thanks.
=========================
... more >>
Is neglecting Dispose in this case acceptable?
Posted by Brad Wood at 12/7/2006 8:40:13 AM
I have a persistence class with one dababase connection and no other member
objects that need management. For reasons that are not necessary to go
into, I'd rather not implement Dispose in this class. If I implement a
finalizer, and close my database connection there, I see only one problem,... more >>
Strange problem
Posted by Larry Smith at 12/1/2006 4:45:34 PM
Hi there,
When I run the following on my app's primary thread:
System.Type.GetType("System.Windows.Forms.Form")
It works as expected. If I then launch a thread via the "BackgroundWorker"
class immediately after the above call, and invoke the above again as soon
as the thread starts, it ... more >>
|