[DevExpress Support Team: CLONED FROM T753143: CodeRush Copyright Header only on new Files]
Hey Pavel,
Additionally, i implemented a rule, which should convert all var-types to the explicit type (e.g. string). This works somewhat fine, but it adds the fully qualified name for Lists, but not for normal variables.
Example:
C# var test = new List<string>()
{
"asdf",
"asdf2",
"asdf3"
};
// gets converted to
global::System.Collections.Generic.List<string> test = new List<string>
{
"asdf",
"asdf2",
"asdf3"
};
but
C#var test = "asdf";
is convertet to
C#string test = "asdf";
when i save. Is there a option in CodeRush i set wrong?
Thanks for the help
Andri
Hello Andri,
Thank you for pointing out to this issue. I have reproduced it on my side.
We will research it and let you know when we have any results.