Newly Added Types in .NET Framework 2.0 Service Pack 1

I assumed that in .NET 2.0 SP1 bugs were fixed (without new types) until I came across several messages that mentioned DateTimeOffset , which was added in .NET 2.0 SP1.

Is there a complete list of recently added types in .NET 2.0 SP1?

+4
source share
4 answers

New interfaces have appeared, such as INotifyPropertyChanging, so new types have appeared. The question really is.

+1
source

DateTimeOffset was added in 2.0 SP1 - I do not know of other new types.

Given the coincidence of time, it might be worth mentioning that 2.0 SP1 comes with 3.5 RTM (i.e. November 2007) and 2.0 SP2 comes with 3.5 SP1.

0
source

Depending on what D2VIANT refers to

Full article: http://www.hanselman.com/blog/CatchingRedBitsDifferencesInNET20AndNET20SP1.aspx

I managed to find additional resources that list the changes in .NET SP1. Listed below are some of the added / affected types.

  • System.DateTimeOffset
  • System.GCCollectionMode
  • System.Runtime.GCLatencyMode
  • System.Configuration.OverrideMode
  • System.Data.SqlClient.SortOrder
  • System.Data.Design.TypedDataSetSchemaImporterExtensionFx35
  • System.Data.TypedDataSetGenerator.GenerateOption
  • System.UriIdnScope
  • System.ComponentModel.INotifyPropertyChanging
  • System.ComponentModel.PropertyChangingEventArgs
  • System.ComponentModel.PropertyChangingEventHandler
  • System.ComponentModel.Design.Serialization.IDesignerLoaderHost2
  • System.Configuration.IdnElement
  • System.Configuration.IriParsingElement
  • System.Configuration.UriSection
  • System.Net.Sockets.SendPacketsElement
  • and many others ... API Changes from org2.0 to 2.0 and New Methods and Types
0
source

Source: https://habr.com/ru/post/1276524/


All Articles