我是新到的。
我想开发一个计算机应用系统,很可能在2.0网框架中。 我将设立一个安装机,希望用另一个拥有7名顾问的机器操作。
哪一种是净版本,一需要在窗口7上安装,以便我能够操作申请。
我是新到的。
我想开发一个计算机应用系统,很可能在2.0网框架中。 我将设立一个安装机,希望用另一个拥有7名顾问的机器操作。
哪一种是净版本,一需要在窗口7上安装,以便我能够操作申请。
Windows 7已经具备。 建立了网络框架。 只要你针对框架版本2或更多,你就只需要安装。
As other answers have mentioned Windows 7 comes with version 3.5 already installed. It should also be noted that version 3.5 uses the CLR of version 2.0. Which means it s not a complete new framework, but just an extension of 2.0, and it can t run without it.
此外,还安装了设备。 NET Framework 2.0 SP1, (installs .NET Framework 2.0 SP2 with 3.5 SP1) and .NET Framework 3.0 SP1 (installs .NET Framework 3.0 SP2 with 3.5 SP1)。
这些资料来自wikipedia page 。
Windows 7 comes with .NET 3.5 byault.
Which is the .net version i need to install on windows 7
NET Framework 3.5, including the SP1 mods, come withWindows 7. At the time of this post, this is the recent edition of the .NET Framework. (4个员额将于下月释放) 因此,你不需要安装任何东西。
如果你在非Windows 7系统中进行开发,我建议你安装。 NET Framework 3.5 SP1 on that system to minimum differences in the environment. (在这一装置中,你仍然可以低于目标。
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber. I want to create a many to many association ...
I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....
I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...
I ve got some code which sets up a datacontext. Often enough, the datacontext should be set to some underlying data collection, such as an ObservableCollection - but occasionally I d like to set it ...
I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...
NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...