Recommended c# Syntax Code for High Performance

  • Thread starter Thread starter Sakura Data
  • Start date Start date
S

Sakura Data

Guest
Hello,

There are some syntax that you should not use for instance "foreach" is takes a lot of resources compare to "for (in i=0; i < 10; i++)"

Another approach is to use array index instead of using "List<T>"

Do you know anythong more about similiar of syntax code that is not usage to use and also syntax code is recommended to use?

Thank you!

Continue reading...
 
Back
Top