main
1namespace tests
2{
3 static class Casting
4 {
5 static public T downcast_to<T>(this object item)
6 {
7 return (T) item;
8 }
9 }
10}