This repository was archived by the owner on Jul 12, 2022. It is now read-only.
This repository was archived by the owner on Jul 12, 2022. It is now read-only.
Language keywords instead of BCL types #53
Open
Description
11.We use language keywords instead of BCL types (i.e. int, string, float instead of Int32, String, Single , etc) for both type references as well as method calls (i.e. int.Parse instead of Int32.Parse ).
Don't know how difficult this is to change via Roslyn but when I see the following:
String[] result = new String[_capslist.Length];
my first thought is that this is old code. I personally don't mind either way for the method calls, it is mainly the declaration of string and object that give that impression.
This would likely give a large code churn but it also seems like the best time to do it.