views:

148

answers:

1

I want to check out the new DotNet 4.0 System.Numberic namespace for a project I am working on.

The only info I can find is the CTP VPC download on microsoft connect. I do not want the entire vs2010 package, I just need the System.Numeric assembly so i can run some tests on it.

Does anyone hava any ideas or maybe has the VPC and can send me the dll.

Thanks in advance.

+3  A: 

There is no supported way to do this via Microsoft. The only release Microsoft has issued for 4.0 is the Vs 2010 CTP. There is no separate download for the .Net framework or any of it's libraries.

Having the DLL alone won't do you any good. The DLL is built against the 4.0 CLR and requires a 4.0 CLR to run. Unless you have the CTP Image you won't have the 4.0 CLR and won't be able to run/test this DLL.

I think you're stuck with getting the VPC

JaredPar