ref — must initialize. out — must assign inside.
1// ref2int a = 5;3Increment(ref a);4 5// out6int number;7TryParse("123", out number);