3 lines
73 B
C#
3 lines
73 B
C#
int a = 1;
|
|
int b = 2;
|
|
Swap(ref a, ref b); // Type parameter is inferred.
|
int a = 1;
|
|
int b = 2;
|
|
Swap(ref a, ref b); // Type parameter is inferred.
|