2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-exmethod-13.cs
blob9c778e771a4771bc6cd66fb9efed240e99b35278
3 using System;
4 using System.Collections.Generic;
6 public static class Foo
8 public static IEnumerable<T> Reverse<T> (this IEnumerable<T> self)
10 return self;
13 public static void Main ()
15 int [] data = {0, 1, 2};
17 var rev = data.Reverse ();