Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is new in .Net framework 3.5? [closed]

Tags:

.net

.net-3.5

I try to keep it very simple. All I have seen in .Net 3.5fx is language upgrades i.e C# 3.0, VB.Net 9, still core CLR is based 2.0fx. I really did not find any new features (LINQ is again language feature).

Is .Net framewors 3.5 just like fixed version of .Net 3.0 framework ?

I really failed to find some thing new in core framework :(

like image 695
Prashant Cholachagudda Avatar asked Dec 22 '22 10:12

Prashant Cholachagudda


1 Answers

  1. System.Data.Linq.dll – The implementation for LINQ to SQL.

  2. System.Xml.Linq.dll – The implementation for LINQ to XML.

  3. System.AddIn.dll, System.AddIn.Contract.dll – New AddIn (plug-in) model.

  4. System.Net.dll – Peer to Peer APIs.

  5. System.DirectoryServices.AccountManagement.dll – Wrapper for Active Directory APIs.

  6. System.Management.Instrumentation.dll – WMI 2.0 managed provider (combined with System.Management namespace in System.Core.dll).

  7. System.WorkflowServices.dll and System.ServiceModel.Web.dll – WF and WCF enhancements (for more on WF + WCF in v3.5 follow links from here).

  8. System.Web.Extensions.dll – The implementation for ASP.NET AJAX (for more web enhancements, follow links from here) plus also the implementation of Client Application Services and the three ASP.NET 3.5 controls.

  9. System.Core.dll – In addition to the LINQ to Objects implementation, this assembly includes the following: HashSet, TimeZoneInfo, Pipes, ReaderWriteLockSlim, System.Security., System.Diagnostics.Eventing. and System.Diagnostics.PerformanceData.

  10. System.Data.DataSetExtensions.dll – The implementation of LINQ to DataSet.

  11. System.Windows.Presentation.dll –WPF support for the System.AddIn mentioned of point 3 above.

  12. System.VisualC.STLCLR.dll – STL development in the managed world.

like image 136
rahul Avatar answered Jan 09 '23 05:01

rahul