Covarianza finalmente nel C# 4.0

Seguendo il web cast “Raf & Alk su C# 4” di dotnetmarche ho scoperto l’introduzione di questa feature nel framework 4.0 con cui mi ero scontrato tempo fa e che mi sembrava quasi scontata.

Dalla msdn http://msdn.microsoft.com/it-it/library/ee207183.aspx

// Assignment compatibility. 
string str = "test";
// An object of a more derived type is assigned to an object of a less derived type. 
object obj = str;

// Covariance. 
IEnumerable<string> strings = new List<string>();
// An object that is instantiated with a more derived type argument 
// is assigned to an object instantiated with a less derived type argument. 
// Assignment compatibility is preserved. 
IEnumerable<object> objects = strings;

// Contravariance.           
// Assume that the following method is in the class: 
// static void SetObject(object o) { } 
Action<object> actObject = SetObject;
// An object that is instantiated with a less derived type argument 
// is assigned to an object instantiated with a more derived type argument. 
// Assignment compatibility is reversed. 
Action<string> actString = actObject;
Tag di Technorati: ,

Build Tfs 2010 - non vengono visualizzati i risultati dei test

Per visualizzare il risultato dell’esecuzione dei test di una build è necessario aver impostato il permesso “View test runs”.

Per impostarlo è sufficiente andare nel Team Explorer tasto destro sul progetto 
Team Project Settings –> Security …

image

image

Tag di Technorati: ,,
«marzo»
domlunmarmergiovensab
272812345
6789101112
13141516171819
20212223242526
272829303112
3456789