| Thread | Last Post | Replies |
|
| Unhandled Exception | 16 Jul 2004 00:31 GMT | 11 |
Hi all... What exactly are those "Application has generated an exception that could not be handled" from the Common Language Debugging Services error and hoiw exactly can I debug them? I have 3 clients of 400 running into these
|
| what language did microsoft use to develop .net framework | 15 Jul 2004 22:58 GMT | 3 |
what language did microsoft use to develop .net framework and can i use c# to build APPLICATION that interact directly with the hardware thanks
|
| ContextBoundObject Attribute question | 14 Jul 2004 18:16 GMT | 1 |
I rewrote a Custom Attribute sample to supply tracing functionality to a context bound class thru an attribute. The thing is that I would like to continue nested tracing inside the class, but since a method call, in an object, that calls another method on itself
|
| A fundamental question about CAS | 14 Jul 2004 09:15 GMT | 2 |
After delving into CAS for long days, i begin to understand its security model. BUT, there is still something i don't understand : CAS will treat only .NET written program. So it will never see the
|
| AppDomain and Shadow Copy | 13 Jul 2004 23:40 GMT | 2 |
I have the following problem when creating an AppDomain and loading an assembly: I followed the steps described as anywhere i looked for documentation regarding this issue and the result is not quite what I expected. I obtain a
|
| Question on Memory Allocation | 13 Jul 2004 19:29 GMT | 3 |
Let's say I have this object: public class void MyTest() { public string str1 = [1k worth of text]; public string str2 = [1k worth of text];
|
| Set DllImportAttribute at run-time? | 13 Jul 2004 19:28 GMT | 5 |
I have a class that has methods like: [DllImport("wfdb.dll")] private static extern int setsampfreq(double freq); The wfdb.dll file isn't in the current directory nor on the path ... so I
|
| ISymWrapper and System.NotSupportedException | 13 Jul 2004 18:03 GMT | 1 |
There seems to be a lot of calls to ISymWrapper that return System.NotSupportedException. Here are some examples: SymDocument.SourceLength
|
| cli specification vs. VS Implementation | 13 Jul 2004 12:55 GMT | 4 |
Sorry for X-posting, If there's a more appropiate group, please f'up to it. I've looked a the binary source of several .net modules both with a hex editor and with a parser I've written. There are several things I've noticed and/or don't quite understand with
|
| 64Bit .Net & WOW64 | 10 Jul 2004 12:41 GMT | 3 |
Lets say I have a verifiable assembly which does not use P/Invoke or COM-Interop. On a 64bit OS this will run in the 64bit .net runtime because i assume the OS loader looks and determines its PE32+. If this assembly (via a plugin type of framework) loads another assembly that is not ...
|
| threading Vs delegates for Async processing | 10 Jul 2004 05:59 GMT | 1 |
Is it better to use threading or delegates for Async processing? I mean in performance, or IL generation, etc. Thanks a bunch
|
| "Application Domain"..... | 09 Jul 2004 16:05 GMT | 2 |
Is there a tool that will allow me to look at a .Net executable and list the currently existing app domains at runtime?
|
| ServicedComponents in Dynamic Modules | 09 Jul 2004 04:08 GMT | 1 |
Forgive me for multi-posting on this issue but I am in dire need of help. Is there something on System.EnterpriseServices.ServicedComponent that prevents me from Creating a derivative in a DynamicModule? Whenever I try to call the constructor I get: "The invoked member is not ...
|
| .NET + ActiveX control firing many events = continous memory leak | 08 Jul 2004 21:55 GMT | 1 |
First my conclusion (I hope someone can tell me I'm wrong) followed by a problem description. CONCLUSION: When an activex control is used in any .NET application
|
| What is the opposite of BitConverter.ToString(byte[]) ? | 08 Jul 2004 21:52 GMT | 3 |
If I run the following code: Byte[] bytes = System.Text.Encoding.ASCII.GetBytes("test"); return BitConverter.ToString(bytes); I get the string "74-65-73-74" back. My question is, what is the
|