CLR type name instead C# type name
Hi
Is there any way to tell Resharper to generate CLR type names instead C# type names? I mean, for example Int32 instead int. Now if I have, let say
interface ICalculator
{
Int32 Add(Int32 x, Int32 y);
}
If I want implement this interface, Resharper generates next method
public int Add(int x, int y)
{
throw new NotImplementedException();
}
How can I change this behavior?
Please sign in to leave a comment.
No, this is currently impossible
--
Eugene Pasynkov
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"Vladimir Dumchikov" <no_reply@jetbrains.com> wrote in message
news:20858270.1147684257485.JavaMail.itn@is.intellij.net...
>
>
>
>
>
Dear Vladimir,
Consider investing some of your tracker votes into issue #5662.
Cheers,
Christian