
This is just a thought, that I was thinking why can't we have a constant with static in C#, and the answer is 'NO';
That we cannot have a static constant; e.g:
I created a class as below:
public class Constants1
{
public const string Const1 = "Hello";
public const string Const2...