.NET Framework 3.0, anteriormente llamado WinFX, se lanzó el 21 de noviembre de 2006. No se incluyen cambios arquitectónicos importantes con esta versión. .NET 3.0 incluye WPF, WCF, WF y CardSpace
Solía usar .Except() para comparar la diferencia de dos listas en C # usando LINQ como sigue.
List<string> APromotionProduct= GetAPromotionProduct(PrdA);
List<string> BPromotionProduct = GetBPromotionProduct<string>(PrdB);
List<string> tempList = new List<string>();
tempList = PromotionProduct.Excep....