Advertisement
Guest User

Untitled

a guest
Oct 14th, 2011
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Q2CIL
  5. {
  6.     public class Test
  7.     {
  8.         public static int Foo(int number)
  9.         {
  10.             List<int> test = new List<int>();
  11.             test.Add(number);
  12.             return test[0];
  13.         }
  14.     }
  15. }
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement