| Thread | Last Post | Replies |
|
| Need to create a delegate for a property. | 17 Oct 2004 05:29 GMT | 2 |
Is there anyway to create a delegate for a property of a class? i.e.: class MyClass {
|
| CLR Problem | 16 Oct 2004 07:15 GMT | 2 |
I am new in vb.net I have one application which is getting list of files and folders. But on some PC application is given error that 'Application has generated exception that couldn't be handled' and process and thread
|
| AppDomain Unload | 15 Oct 2004 09:29 GMT | 4 |
Is there a way that an AppDomain can be forced to be unloaded? AppDomain.Unload often throws an exception because a thread internal to the CLR/ Framework is still running and can't be stopped. Is there a way to force unloading of the AppDomain or kill this thread before
|
| inspecting the number of function calls within a particular functi | 15 Oct 2004 03:05 GMT | 4 |
how can i count the number of function calls that a particular function makes? i want to be able to inspect a dll and retrieve the number of function calls for a particular function. i know that this is possible since ildasm actually displays the opcodes for function calls and ...
|
| Which is more efficient/faster: strint to integer conversion | 14 Oct 2004 22:59 GMT | 2 |
Question: Convert string to integer efficiency... string s = "1"; Choice 1: int i = Convert.ToInt32(s);
|
| IMetadataImport.EnumUserStrings garbage | 14 Oct 2004 21:59 GMT | 1 |
I'm calling IMetadataImport.EnumUserStrings from managed code and it's returning me garbage strings. I've converted the the interface method in managed code this way: void EnumUserStrings(
|
| outofmemoryException | 14 Oct 2004 13:20 GMT | 2 |
I am accessing Blob from Oracle database using OleDbDataReader,ExecuteReader method.I am getting an outofMemoryException when blob keeps on accessing and total size of all the blobs exceeds 1 GB. When I profiled the application with PerfMon.exe,in the graph always Large
|
| Getting exported type | 14 Oct 2004 09:31 GMT | 4 |
I have the following problem. Imagine I have a class in module A.dll which extends class from module B.dll which is part of another assembly (referenced from A.dll). If I get base class token using IMetadataImport, I get a typeref. How can I resolve the typeref to typedef and ...
|
| Threading | 13 Oct 2004 12:43 GMT | 1 |
I am getting the following error in my application: Exception Type: System.Threading.ThreadAbortException ExceptionState: System.Web.HttpApplication+CancelModuleException Message: Thread was being aborted.
|
| AppDomain.ResourceResolve Event | 12 Oct 2004 22:47 GMT | 1 |
Can anybody explain me how to use the ResourceResolve Event? It should return an Assembly. How do I get a resource in a assembly so that I can load it? Or is this method used to load satelite assemblies? But these assemblies are also resolved by the AssemblyResolve event...
|
| ISymWrapper and missing GetSequencePoints()? | 12 Oct 2004 20:48 GMT | 2 |
I'm able to get the sequence point on ISymbolMethod but the call doesn't seem to be available for anything else like class or other members definition. I did look in Debug.Ref.doc but no luck.
|
| Problems with LoadFrom and CreateInstance when using an URL | 11 Oct 2004 07:45 GMT | 1 |
When I use LoadFrom to load a local assembly, ex: LoadFrom(@"c:\<path>\MyApp.dll"), I can then create an instance of an object given its type using CreateInstance("MyApp.Form1") without any problem. However, if I try the same but with an URL, ex:
|
| System.Net.ScatterGatherBuffers.MemoryChuck allocates large byte[] | 10 Oct 2004 22:01 GMT | 1 |
Summary: System.Net.ScatterGatherBuffers.MemoryChuck allocates inordinately large byte[]s when sending large post data. The following application consumes inordinate quantities of memory. My code does not explicitly allocate memory in a loop nor does it explicitly allocate
|
| Fusion/Loader error | 10 Oct 2004 05:36 GMT | 1 |
My app supports en and ja cultures. The app fails on an Application Center cluster and the fusion log shows 0x80070005 error (access denied). I have checked permissions/ACLs on the assemblies, used tlist -m to check process locks and we don't use impersonation.
|
| [C#] Question about casting and System.Type.GetType() | 08 Oct 2004 09:00 GMT | 6 |
I'm having some trouble with the code below. I receive a compile-time error on the second line saying "; expected": private static void myTestFunction(long myLong) {
|