Tagged Questions

Version 4.0 of the .NET Framework.

learn more… | top users | synonyms (3)

109
votes
5answers
29k views

What 'additional configuration' is necessary to reference a .NET 2.0 mixed mode assembly in a .NET 4.0 project?

I have a project in which I'd like to use some of the .NET 4.0 features but a core requirement is that I can use the System.Data.SQLite framework which is compiled against 2.X. I see mention of this ...
98
votes
5answers
22k views

.NET 4.0 has a new GAC, why?

%windir%\Microsoft.NET\assembly\ is the new GAC, does it mean now we have to manage two GACs, one for .NET 2.0-3.5 apps and the other for .NET 4.0 apps? The question is, why?
92
votes
5answers
35k views

What does 'useLegacyV2RuntimeActivationPolicy' do in the .NET 4 config?

While converting a project that used SlimDX, and therefore has unmanaged code, to .NET 4.0 I ran into the following error: Mixed mode assembly is built against version 'v2.0.50727' of the runtime ...
90
votes
8answers
13k views

App.Config Transformation for projects which are not Web Projects in Visual Studio 2010?

For Visual Studio 2010 Web based application we have Config Transformation features by which we can maintain multiple configuration files for different environments. But the same feature is not ...
85
votes
7answers
8k views

What are the true benefits of ExpandoObject?

The ExpandoObject class being added to .NET 4 allows you to arbitrarily set properties onto an object at runtime. Are there any advantages to this over using a Dictionary<string,object>, or ...
75
votes
10answers
14k views

How can I run PowerShell with the .NET 4 runtime?

I am updating a PowerShell script that manages some .NET assemblies. The script was written for assemblies built against .NET 2 (the same version of the framework that PowerShell runs with), but now ...
71
votes
11answers
20k views

ASP.NET MVC on IIS 7.5

I'm running Windows 7 Ultimate (64 bit) using Visual Studio 2010 RC. I recently decided to have VS run/debug my apps on IIS rather than the dev server that comes with it. However, every time I try ...
69
votes
4answers
27k views

Difference between .NET 4 Client Profile and Full Framework download

The .NET 4 32 + 64 bit Full is 48.1 MB and the Client Profile is 41.0 MB. When is it preferable to install the Client Profile instead of the full .NET Framework? What difference is there between the ...
63
votes
16answers
2k views

Things in .NET Framework 4 that every programmer should know

I recently moved to Visual Studio 2010 and upgraded my website to work with .NET Framework 4. (From VS 2008 - Framework 3.5) What are things I need to know to improve site speed, readability or ...
45
votes
5answers
3k views

Breaking changes in .NET 4.0

There is a lot of information about new features and classes in new 4.0 however there are also changes that may affect existing applications, for example Timespan now implements IFormattable and old ...
42
votes
3answers
15k views

Installing MSBuild 4.0 without Visual Studio 2010

I installed .NET 4.0 and VS 2010 RC on my laptop and MSBuild was automatically installed. I was hoping to build a continuous integration server by just installing the .NET SDK without VS 2010, so I ...
40
votes
4answers
2k views

Entity Framework Vote of No Confidence - relevant in .NET 4?

I'm deciding on an ORM for a big project and was determined to go for ADO.NET Entity Framework, specifically its new version that ships with .NET 4. During my search for information on EF I stumbled ...
37
votes
2answers
3k views

.NET 4.0 build issues on CI server

Anybody manage to get .NET 4.0 applications compiling on a CI server without installing Visual Studio 2010 on a CI server? No SDK exists for .NET 4.0. Have installed .NET 4.0 on CI Server. ...
36
votes
7answers
842 views

Why doesn't this generic extension method compile?

The code is a little weird, so bear with me (keep in mind this scenario did come up in production code). Say I've got this interface structure: public interface IBase { } public interface IChild : ...
36
votes
3answers
8k views

What is Microsoft.csharp.dll in .NET 4.0

This DLL is added by default in Visual Studio 2010 projects. What is this new assembly used for? It does not seem to contain much after looking at it using Reflector and Google does not seem to have ...
35
votes
4answers
1k views

How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?

I'm trying to give a short example of IDynamicMetaObjectProvider for the second edition of C# in Depth, and I'm running into issues. I want to be able to express a void call, and I'm failing. I'm ...
34
votes
4answers
8k views

Change C++/CLI project to another framework than 4.0 with vs2010

Since I upgraded my project to visual studio 2010 project format, my C++/CLI project is targeted to .net framework 4.0. It is easy to switch the framework version to another version from a C# ...
33
votes
5answers
3k views

Looking for replacement for Snippet Compiler

I have been using Snippet Compiler for a few years, and it's great. Unfortunately, it isn't getting maintained, and is falling behind. Doesn't support .NET 4, which we recently switched to, and even ...
31
votes
3answers
436 views

Is there a workaround to the C# 28-time inline limit?

I am working on optimizing a physics simulation program using Red Gate's Performance Profiler. One part of the code dealing with collision detection had around 52 of the following little checks, ...
28
votes
9answers
2k views

C# operator overload for “+=”?

I am trying to do operator overloads for "+=", but I can't. I can only make an operator overload for "+". How come? Edit The reason this is not working is that I have a Vector class (with an X and ...
28
votes
7answers
9k views

Building .NET 4 projects with Nant

How do I get nant to build projects that target the .NET 4.0 Framework?
27
votes
3answers
978 views

How to combine 2 lists using LINQ?

Env.: .NET4 C# Hi All, I want to combine these 2 lists : { "A", "B", "C", "D" } and { "1", "2", "3" } into this one: { "A1", "A2", "A3", "B1", "B2", "B3", "C1", "C2", "C3", "D1", "D2", "D3" } ...
27
votes
1answer
5k views

Unable to load SOS in WinDbg

Background: I'm new to WinDbg and trying to get it running for the first time. I want to examine a memory dump I took from a running ASP.NET 4 site hosted in IIS 7 on Windows Server 2008 (x86) and ...
26
votes
4answers
2k views

How mature is the Microsoft Code Contracts framework?

Microsoft has recently put a release of their Code Contracts framework on DevLabs with a commercial license. We're interested on using them in our project (mostly C#, some C++/CLI) to gradually ...
25
votes
1answer
446 views

casting result to float in method returning float changes result

I wanted to understand why this code prints False in .net 4. I wanted to know what exactly what was going on with the cast. The answer was not "floating point is inaccurate" or "don't do that". ...
25
votes
3answers
817 views

Co- and Contravariance bugs in .NET 4.0

Some strange behavior with the C# 4.0 co- and contravariance support: using System; class Program { static void Foo(object x) { } static void Main() { Action<string> action = _ => { ...
24
votes
1answer
711 views

In .NET 4.0, how do I 'sandbox' an in-memory assembly and execute a method?

EDIT: A lot of people kept asking, so here is the reason why this question was being asked: www.devplusplus.com/Tests/CSharp/Hello_World IMPORTANT NOTE: There are a million answers to similar ...
24
votes
4answers
5k views

FxCop for .NET 4.0

I know Visual Studio 2010 has a new Code Analysis tool built in, but that is only for the premium and ultimate editions. From what I can see the latest FxCop supports .NET 3.5 SP1. Searching I ...
24
votes
2answers
6k views

Is asp.net MVC2 included in .net 4.0 framework?

I've installed .net 4 in the server. Now I don't know if I must install the MVC 2 for VS2008 or what because I got this error: Could not load file or assembly 'System.Web.Mvc, Version=2.0.0.0, ...
23
votes
3answers
448 views

foreach + break vs linq FirstOrDefault performance difference

I have two classes that perform date date range data fetching for particular days. public class IterationLookup<TItem> { private IList<Item> items = null; public ...
23
votes
3answers
4k views

HtmlString vs. MvcHtmlString

HtmlString vs. MvcHtmlString What are the differences bettween those two, or when to prefer one over the other? Edit: One thing to prefer MvcHtmlString over HtmlString is the extension method ...
23
votes
5answers
4k views

what is the state of the “C# compiler as a service ”

Back at the PDC in 2008, in the C# futures talk by Anders Hejlsberg he talked about rewriting the C# compiler and providing a "compiler as a service" I certainly got the impression at the time that ...
22
votes
1answer
11k views

log4net with .NET 4.0

I've thrown together some code to tinker with the new .Net 4.0/VS 2010 pieces, but I can't seem to find a build of my logging framework of choice (log4net) for 4.0, and I'm getting reference errors ...
22
votes
4answers
2k views

.NET 4.0 code contracts - How will they affect unit testing?

For example this article introduces them. What is the benefit? Static analysis seems cool but at the same time it would prevent the ability to pass null as a parameter in unit test. (if you ...
20
votes
2answers
537 views

Very High Memory Usage in .NET 4.0

I have a C# Windows Service that I recently moved from .NET 3.5 to .NET 4.0. No other code changes were made. When running on 3.5, memory utilzation for a given work load was roughly 1.5 GB of memory ...
20
votes
3answers
2k views

Cancellation token in Task constructor: why?

Certain System.Threading.Tasks.Task constructors take a CancellationToken as a parameter: CancellationTokenSource source = new CancellationTokenSource(); Task t = new Task (/* method */, ...
19
votes
3answers
145 views

Enum addition vs subtraction and casting

Why does addition require a cast but subtraction works without a cast? See the code below to understand what I am asking public enum Stuff { A = 1, B = 2, C = 3 } var resultSub = ...
19
votes
1answer
882 views

Make Debug/Release Build Configuration with 1 Click Publish dependent on the selected Publish Profile

This is almost a duplicate of Link build configuration to a publish profile, but that question was not answered... I have 2 1 Click Publish configurations for my Web Application: Test Server ...
19
votes
4answers
3k views

C# Conditional Compilation and framework targets

There are a few minor places where code for my project may be able to be drastically improved if the target framework were a newer version. I'd like to be able to better leverage conditional ...
19
votes
1answer
3k views

Log4Net and .NET 4.0 RC

I tried to compile a project dependent on the Log4Net logging framework using .NET 4.0 RC and ran into some problems. Out of the box (just changing the target to .NET 4.0), it no longer works, a ...
19
votes
1answer
704 views

Is PIA embedding broken in .NET 4.0 beta 2?

A while ago, I wrote some Word interop examples in Visual Studio beta 1, and set the reference to Microsoft.Office.Interop.Word to be embedded (set the "Embed Interop Types" = true in the reference ...
18
votes
6answers
1k views

Parallel.For(): Update variable outside of loop

I'm just looking in to the new .NET 4.0 features. With that, I'm attempting a simple calculation using Parallel.For and a normal for(x;x;x) loop. However, I'm getting different results about 50% of ...
18
votes
1answer
1k views

.NET4: In-Process Side-by-Side Execution Explained

Overview: I'm interested in learning more about the .NET4 "In-Process Side-by-Side Execution" of assemblies, and need additional information to help me demystify it. Motivation: The application in ...
18
votes
2answers
537 views

Does ASP.NET worker process still return data in chunks of 31kb

Does ASP.NET worker process still return data in chunks of 31Kb This MSDN article written in May 2004 specifies the following. When using the ASP.NET process model, the ASP.NET worker process ...
18
votes
1answer
3k views

C#: Code Contracts vs. normal parameter validation

consider the following two pieces of code: public static Time Parse(string value) { string regXExpres = "^([0-9]|[0-1][0-9]|2[0-3]):([0-9]|[0-5][0-9])$|^24:(0|00)$"; ...
18
votes
5answers
12k views

Can I use .NET 4.0 beta in Visual Studio 2008?

There are some really great features in .NET 4.0 that I would like to start using but I am not comfortable making the change to VS 2010 just yet. Is there a way to use the .NET 4.0 beta in VS 2008?
17
votes
2answers
323 views

Entity Framework: Insists on adding new entity in many-to-many instead of re-using existing FK

I have got a many to many relationship, briefly Cases -----< CaseSubjectRelationships >------ CaseSubjects More fully: Cases(ID, CaseTypeID, .......) CaseSubjects(ID, DisplayName, CRMSPIN) ...
17
votes
2answers
1k views

Silverlight 4 / .NET 4 Debugging resource strings

I recently encountered a strange thing. On some of my company's servers when an exception message is printed out (yes, bad, I know. It's for debugging), the actual message isn't displayed. Instead it ...
17
votes
6answers
5k views

Microsoft.WebApplication.targets was not found, on the build server. What's your solution?

Trying to build my project on the build server gives me the following error: Microsoft (R) Build Engine Version 4.0.30319.1 error MSB4019: The imported project "C:\Program Files ...
17
votes
9answers
6k views

VSTS 2010 SGEN : error : Could not load file or assembly (Exception from HRESULT: 0x80131515)

I am experiencing a strange issue with VS2010. We use TFS to build our API dlls and we used to reference them in our projects usign a mapped network drive that was fully trusted. We have been working ...

1 2 3 4 5 85