Tips: shortcut way to create properties in c-sharp

You could type "prop" and then press tab, that will generate the following.

        public TYPE Type { get; set; }

Then you change "TYPE" and "Type"

        public string myString {get; set;}

You can also get the full property typing "propfull" and then tab, that would generate the field and the full property.

        private int myVar;
        public int MyProperty        {
   
        get { return myVar;}
   
        set { myVar = value;}        }

Comments

Post a Comment

Popular posts from this blog

Migrating database from ASP.NET Identity to ASP.NET Core Identity

Customize User's Profile in ASP.NET Identity System

Lambda two tables and three tables inner join code samples