When I read a source code C#, I see a line
return new Form(ElementType.Checkbox, ((IHTMLInputElement)htmlElement).@checked);
But I can NOT find it with keyword .@checked
.
Could you please tell me what is .@checked
called and its meaning?
Update answer
Firstly, Thanks @Yeldar Kurmangaliyev, @Erik Funkenbusch and @TcKs.
Secondly, I'm sorry for making duplicate post. Because I searched with ".@checked" and saw nothing.
Finally, I understood that @
sign help define a variable whose name is as same as C# keyword
, like this:
string @string = "This is a string";
string str = @string; // str = "This is a string"