Feature request 1
When generating a property by implementing an interface, provide the option
to generate the instance variable and set the property to expose the
instance variable.
I.e. if you have
interface foo
{
int foo {get; set;}
}
rather than generating
public int foo
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
have the option to generate
private int _foo;
public int foo
{
get { return _foo; }
set { foo = value; }
}
Thanks,
Oskar Austegard
Please sign in to leave a comment.
Good suggestion. Can you please submit it into the tracker?
--
Valentin Kipiatkov
Chief Scientist, Vice President of Product Development
JetBrains, Inc
http://www.jetbrains.com "Develop with pleasure!"
Done.
"Valentin Kipiatkov" <valentin@intellij.com> wrote in message
news:cgn3k6$1nd$1@is.intellij.net...
>
>
>
>
>