Clearing ReSharper Code

Is there a way to tell ReSharper to use String and Int64 type names when a field or method is used for type (' static -ally'), but String and long for initialization variable?

Examples:

 string name = "@user"; // but int compResult = String.Compare(a, b, ...); long x = 0; // but long x = Int64.Parse(s); 
+6
source share
1 answer

There is currently no ReSharper option to prefer String over String .

The same question was recently asked by his community .

+4
source

Source: https://habr.com/ru/post/915578/


All Articles