checked is a keyword in c#, which causes designated expressions to be checked for arithmetic overflow. It may be used in one of two ways:1) block - checked {} , where the block of statements enclosed ...
Reason is checked is a keyword in C#,but if u want to keyword as an identifier use @ with it.e.g int @checked=3;This works with all the keywords,but it is recommended to avoid it.