A brief

There are two ways of automatic completion:

1. Double-click Tab to complete the following code

2. After writing the following code, press Enter and click Tab

Ctor autocomplete constructor

Prop automatic implementation properties

cw Console.WriteLine();

Switch Automatically complete all enumerations

For automatically completes the FOR loop

Foreach Automatically completes the foreach loop

Try Auto complete a try catch

Tryf auto-complete try Finally

The first time you touch the above code, you may not know what to generate, let’s go into details

If you know what code to generate, why don’t you look at it

Break down

ctor

Autocomplete constructor

prop

Automatic implementation properties

cw

Console.WriteLine();

switch

Auto-complete all enumerations

1. After writing the switch, double-click Tab

2. Fill in the enumeration object in switch and press Enter to automatically complete all codes

for

Auto-complete the for loop

foreach

Automatic completion of foreach loops

try

Auto complete try catch

tryf

Auto complete the try Finally