1) Record/Tuple return variables:
public { string ancestorType, int ancestorId } GetAncestorLookup()
{
//...do stuff
return new { ancestorType = var1, ancestorId = var 2 };
}
var ancIdent = GetAncestorLookup();
switch( ancIdent.ancestorType )
{
... and so on
2) Implied generics on class constructors
3) More constraints for generics, for instance numeric:
public T SquareRoot<T>( T input ) where T: numeric
//or for collections:
public T Sum<T> ( IEnumerable<T> input) where T: numeric
public T StandardDeviation<T> ( IEnumerable<T> input) where T: numeric
Or possibly ones based on operator overloads:
public T Product<T> ( IEnumerable<T> input, T start) where T: operator *
{
T result = start;
foreach( T item in input )
result *= item;
return result;
}
Or ones for enums:
public static bool IsSet<T>( this T input, T matchTo )
where T:enum //the constraint I want that doesn't exist in C#3
{
return (input & matchTo) != 0;
}
4) Internal (rather than private) anonymous types.
5) Strong (built into reflection) support for duck-typing. I want
object someObject = //...
IExpected duckTyped = Reflection.Get<IExpected>( someObject );
//or even
duckTyped = someObject as IExpected;
if( duckTyped != null )
duckTyped.InterfaceMethod();
This would work whether someObject's actual type implemented IExpected or not, so long as it could.
6) Equivalent for ?? on properties of nullable objects