In accordance with the rules of the identifier C # - Identifiers cannot begin with a digit.
Thus, you cannot create variablename , classname , methodname , interfacename or propertyname starting with a digit.
but identifiers may begin with underscore .
Try the following:
public class Test { public int _1property {get;set;} }
Sudhakar tillapudi
source share