Avoid using var unless it clearly improves readability

Do

int x = 10;
string y = "hello";


Don't

var x = 10;
var y = "hello";