Advertisement
ichramm

vs2010byebye

Nov 17th, 2011
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. namespace Lastrator
  2. {
  3.     public class Foo
  4.     {
  5.         public static void Method(object o)
  6.         {
  7.            
  8.         }
  9.     }
  10.  
  11.     public class Bar
  12.     {
  13.         public Foo Foo { get; set; }
  14.  
  15.         public static void Method(dynamic d)
  16.         {
  17.             Foo.Method(d);
  18.         }
  19.     }
  20. }
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement