avoid writing the name of the type twice

90

avoid writing the name of the type twice -

List<int> numbers1 = new List<int>();
var numbers2 = new List<int>();
List<int> numbers3 = new();

Comments

Submit
0 Comments