| Thread | Last Post | Replies |
|
| .NET Assemblies versions | 16 Nov 2005 17:33 GMT | 2 |
What happens when on a .NET 2.0 application you reference a third party assembly that itself references the 1.0 versions of the .NET CL? (e.g. mscorlib 1.0, System.dll 1.0, etc.). Does the CLR automatically rebind those references to point to the 2.0
|
| AppDomain.GetAssemblies broken? | 12 Nov 2005 23:07 GMT | 5 |
I have a scenario where AppDomain.CurrentDomain.GetAssemblies () only return part of the loaded assemblies in that AppDomain. I know it is not complete, because the code doing this call is located in assembly B, which is called from assembly A, and in the result of GetAssemblies ...
|
| How are CLR events defined? | 10 Nov 2005 21:07 GMT | 1 |
I'm having a srange issue with events in my app. I am trying to embed Lua scriping using LuaInterface ( http://luaforge.net/projects/luainterface/ ), which basically allows Lua scripts to access CLR object, including their events.
|
| Word and Excel loads version 1.1 of the CLR instead of 2.0 (Beta 2 -> RTM issue) | 10 Nov 2005 11:44 GMT | 8 |
We are in the process of migrating from Beta 2 to the RTM version of Visual Studio 2005 and the .NET Framework. After the RTM version has been installed, Word and Excel no longer load the 2.0 framework for our C# addin, but instead version 1.1. For some unknown reason PowerPoint
|
| Threading Issues | 10 Nov 2005 03:20 GMT | 3 |
I am designing a class library that can be used by web and windows client both, the problem is that i want to initiate certain behavior in class that is thread specific, yet i want to declare a static methods for this behavior....
|
| Strange behaviour with mixed-mode C++ program | 10 Nov 2005 00:11 GMT | 1 |
I am seeing a strange behavior with a managed/unmanaged C++ program. The program is a large application made of DLLs, COM components, and an exe. When I recompile the exe with /clr a problem occurs: at some point, deep down the stack far from main() and far from the
|
| .NET 2.0 missing mscorsvr.dll? | 08 Nov 2005 09:00 GMT | 1 |
Is this server gc dll now part of the mscorwks.dll or just not installed with 2.0 unless you have a server os?
 Signature Thanks, Jeff WS
|
| Compatibility relation for "native int" | 07 Nov 2005 21:28 GMT | 4 |
I'm interested in the compatibility relation (used by the bytecode verifier) which involves the type "native int". So, is int32 compatible with native int? i.e. is int32 a subtype of native int?
|
| CLR host process account | 07 Nov 2005 08:22 GMT | 3 |
[This followup was posted to microsoft.public.dotnet.framework.clr and a copy was sent to the cited author.] When managed code is started, the CLR is loaded into a process and it starts executing the managed code.
|
| can I configure an unmanaged app to use a certain version of the runtime? | 05 Nov 2005 13:03 GMT | 3 |
I have an unmanaged app that uses some dotnet based components we have written via COM (the components are registered for COM interop). The components are all written/use v 1.1 of the dotnet runtime. With the dotnet 2.0 runtime installed, we are finding the app blows up
|
| Is it correct to create custom cultures? | 05 Nov 2005 12:16 GMT | 3 |
I need to store culture-specific resources in my application that are not limited by standard cultures recognized by .NET. For example, a German customer can specify his preferred language as English, and in such case he will receive messages in English but still tailored for ...
|
| dot net functions | 03 Nov 2005 17:10 GMT | 3 |
I am working with visual basic.net 1.1. I need to parse out data in a string that is space delimited. The number of spaces between each data item in the string can change. (I have no control over how many spaces are between each item in the string since I am getting the data from ...
|
| Why doesn't System.Guid have a Parse method? | 02 Nov 2005 23:26 GMT | 3 |
Why doesn't System.Guid have a Parse method when SqlGuid does? It's simple enough to do: System.Guid g = System.Data.SqlTypes.SqlGuid.Parse ( s ).Value ; But why should I need to?
|
| CLR Reserved Bytes Problem | 02 Nov 2005 19:23 GMT | 5 |
We have memory problems with one of our ASP.Net application. While analysing the process memory I found that two performance counters were displaying interesting values: #Total Committed Bytes: 145'000'000
|