Search Results

3
votes
4answers
261 views

Testing .NET code in partial trust environments

I want to test the behavior of a certain piece of .NET code in partial trust environments. What's the fastest way to set this up? Feel free to assume that I (and other readers) are total CAS noob …
2
votes
2answers
272 views

How can I indicate that multiple versions of a dependent assembly are okay?

Assemblies A and B are privately deployed and strongly named. Assembly A contains references to Assembly B. There are two versions of Assembly B: B1 and B2. I want to be able to indicate for Ass …
1
vote

.NET Migrations Engine

There is some amount of support for migrations in the open source project Subsonic, but that's not from Microsoft even if the project owner …
3
votes

Using SQLite with Visual Studio 2008 and Silverlight

Joel Lucsy: That implementation of SQLite is a mixed-mode assembly which is not supported by Silverlight. Only a pure managed implementation would work under the Silverlight CLR. …
0
votes

C# 2.0 code consuming assemblies compiled with C# 3.0

Always try in test before rolling out to production! But yes, this scenario should work correctly. …
40
votes

How to dispose a class in .net?

IDisposable has nothing to do with freeing memory. IDisposable is a pattern for freeing unmanaged resources -- and memory is quite definitely a managed resource. The links pointin …
11
votes

Are there any studies comparing JEE vs. .NET?

People have successfully built applications with both technology stacks. People have also experienced colossal failures with both. In the end, compatibility with existing platforms and skill sets …
2
votes

How to late bind 32bit/64 bit libs at runtime

I was able to do this about a year ago, but I no longer remember all of the details. Basically, you can use IntPtr.Size to determine which DLL to load, then perform the actual LoadLibrary through …
0
votes

Windows Vista: Unable to load DLL ‘x.dll’: Invalid access to memory location. (DllNotFoundException)

Have you made a support request to the vendor? Perhaps there's something about the MacBook Pro hardware that prevents the product from working. …
2
votes

IronRuby performance?

The load time and the memory utilization are still the two weakest points in IronRuby. Once a particular piece of code has been loaded and is running in a sort of steady-state mode -- that is, lit …
12
votes

Learning CIL

The only CIL book on my shelf is Expert .NET 2.0 IL Assembler by Serge Lidin. In terms of what the individual opcodes do or …
1
vote

What can cause .NET assembly registration to fail?

I found a pair of blog …
3
votes

Determining if an assembly is part of the .net framework

It would be helpful if you can explain why you want to get this information. But I suspect that the method both most reliable and most general is going to be the PublicKeyToken. Yes, there's more …
2
votes

C#: How do I get the path of the assembly the code is in?

I suspect that the real issue here is that your test runner is copying your assembly to a different location. There's no way at runtime to tell where the assembly was copied from, but you can prob …
6
votes

Are non-generic collections in .NET obsolete?

The non-generic collections are so obsolete that they've been removed from the CoreCLR used in Silverlight and Live Mesh. …

1 2 3 next
15 30 50 per page