| Thread | Last Post | Replies |
|
| InvalidCastException | 31 May 2006 11:14 GMT | 4 |
I get a InvalidCastException: - ex {"Unable to cast object of type 'SecSoaService.NFFIServiceParameters' to type 'SecSoaService.NFFIServiceParameters'."} System.Exception {System.InvalidCastException}
|
| Confusing Asynchronous Threadpool | 30 May 2006 03:14 GMT | 3 |
I have the following code I created to do multiple websites data crawling using Asynchronous Thread calling it works fine however I'm confused when it comes to make the calling thread stops or sleep until all other threads within the threadpool have all finished their jobs.
|
| Reading assembly manifest without loading assembly | 29 May 2006 17:46 GMT | 8 |
I am working on a web application that is used for migrating other web applications to production. The application currently loads each dll in the target application using Assembly.LoadFile and then calls GetCustomAttributes on the assembly to ensure it was not built in debug ...
|
| Late binding to events without typelib? | 27 May 2006 07:26 GMT | 4 |
I'm using CLR (VB.NET -- C# and even C++ are options if necessary) to late-bind to an object at runtime. It's easy to late bind to method and property members (Dim obj as Object = myObj : Return obj.Name). I don't have access to any sort of type library, which is why I'm ...
|
| Memory Not Being Claimed | 25 May 2006 00:43 GMT | 9 |
Can someone please explain why the DataSet isn't being collected? If I un-comment "dr = null", then the memory is freed. using System; using System.Data;
|
| Multithreaded Automating of IE | 24 May 2006 15:00 GMT | 2 |
I have a .NET windows service that automates IE through interop to shdocvw. Everything works great as long as I only try to do one task at a time. However, this is a multithreaded service where each thread wants to go to different websites to do some work, and I find that my ...
|
| How to resolve :Error 1 Command line error D8016 : '/MT' and '/clr:oldsyntax' command-line | 24 May 2006 11:11 GMT | 3 |
I have ported my project from VS2003 to VS2005 The project contains both unmanaged codeand managed code.While compiling I got the following errors:
|
| 'LoaderLock' Issue | 24 May 2006 07:41 GMT | 1 |
I have ported my VB.Net project from VS2003 to VS2005. I am using some unmanaged code in my project. while running my application,Iam getting the following error "Managed Debugging Assistant 'LoaderLock' has detected a problem in
|
| make Internal access more logical and less physical | 23 May 2006 03:08 GMT | 2 |
If a large framework (or library, application, etc.) has optional parts and some users may not want all parts, it would make sense to break the framework into separate physical assemblies. However, if internal access is specified in the monolithic framework, a problem arises
|
| Performance trouble with assemblies! | 19 May 2006 11:31 GMT | 1 |
I have two C# assemblies (dll) and one desktop testprogram (also C#) and when I start my testprogram and press the button that will use methods in my two assemblies it goes really slow the first time. I thought this had to do with the JIT. The strange thing is that if I start my ...
|
| Forcing type initialization | 17 May 2006 16:11 GMT | 2 |
I want to enforce certain type initializers in an assembly to run at startup. foreach (Type t in Assembly.GetExecutingAssembly().GetTypes()) {
|
| Fast tailcall | 17 May 2006 15:23 GMT | 11 |
Are there any things one can do to assist the jit in generating efficient tail call optimization? If a method with many parameters ends calling a similar method with a similar but not identical signature, and some
|
| Unmaged Code | 16 May 2006 14:38 GMT | 9 |
I need to sak one question related to the CLR and Managed And Unmanage Code I read in the MSDN that ..... The code which is targetting CLR is managed code.
|
| GetProperty BindingFlags question concerning Friend properties | 13 May 2006 23:24 GMT | 4 |
I've using Reflection to get a value from a property in a class and I needed to modify it to allow Friend properties to be included: PropertyInfo = Me.GetType.GetProperty(Name, BindingFlags.Public Or BindingFlags.NonPublic Or BindingFlags.Instance)
|
| "invalid handle", sockets, threads and garbage collector | 12 May 2006 23:52 GMT | 2 |
I'm working on two bugs in my app. They seemed unrelated at first glance, but after some testing and searching the web for clues I am now sure they are somehow connected. The two pieces of code execute frequently, at regular intervals (this is a monitoring app) and sometimes - ...
|