It seems that lines like
Tuple<int> myTuple = new Tuple<int>(21);
are changed to
Tuple myTuple = new Tuple(21);
when I submit my program.cs file. Am I right?
It seems that lines like
Tuple<int> myTuple = new Tuple<int>(21);
are changed to
Tuple myTuple = new Tuple(21);
when I submit my program.cs file. Am I right?