Top ".net-4.0" questions

Version 4.0 of the .NET Framework.

Why doesn't Windows Server 2012 support .NET framework 4.0?

I had tried to use my application built on .NET framework 4.0 with Windows Server 2012 but it's not working and according …

.net-4.0 windows-server-2012
getting PID of process started by Process.start()

I am starting an executable using this code: Process proc = new Process(); proc.StartInfo.FileName = executablePath; proc.Start(); proc.WaitForInputIdle(); …

c# .net-4.0 process pid
JSON - is there any XML CDATA equivalent?

I'm looking for a way that json parsing will take information as is (as if it was CDATA) - and …

java json .net-4.0 cdata
What is the difference between Entity Framework and LINQ to SQL by .NET 4.0?

I was checking 2nd edition of Professional ASP.NET MVC and realized EF replaced LINQ to SQL. I am familiar …

.net linq-to-sql entity-framework .net-4.0
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 …

.net visual-studio-2010 visual-studio c#-4.0 .net-4.0
How to flatten tree via LINQ?

So I have simple tree: class MyNode { public MyNode Parent; public IEnumerable<MyNode> Elements; int group = 1; } I have …

c# .net linq .net-4.0 tree
C# use System.Type as Generic parameter

I have a list of types (System.Type) which need te be queried on the database. For each of this …

c# generics .net-4.0 types
No generic implementation of OrderedDictionary?

There doesn't appear to be a generic implementation of OrderedDictionary (which is in the System.Collections.Specialized namespace) in .NET 3.5. …

c# .net generics .net-4.0 ordereddictionary
Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine' / Windows 2012 server

we have an application written in .NET 4.0 which uses this SAP Crystal Reports. While the same build (x86) is working …

.net-4.0 x86 crystal-reports-2010 windows-server-2012
C# casting to nullable type?

Beyond the regular boring difference between Cast and As if i know that apple is a Fruit so I can …

c# .net-4.0 casting clr