Using constants
The type is not required for constants.
Bad Code
const int MAX_SIZE = 1000;
const string FILE_NAME_PREFIX = "Summary";
Good Code
const MAX_SIZE = 1000;
const FILE_NAME_PREFIX = "Summary";
The type is not required for constants.
const int MAX_SIZE = 1000;
const string FILE_NAME_PREFIX = "Summary";
const MAX_SIZE = 1000;
const FILE_NAME_PREFIX = "Summary";