andrew4582

Row<T1, T2>

Jan 10th, 2012
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1.     [StructLayout(LayoutKind.Sequential)]
  2.     internal struct Row<T1, T2>
  3.     {
  4.         internal T1 Col1;
  5.         internal T2 Col2;
  6.  
  7.         public Row (T1 col1, T2 col2)
  8.         {
  9.             this.Col1 = col1;
  10.             this.Col2 = col2;
  11.         }
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment