Make code snippets consistent with Visual Studio
Make code snippets consistent with Visual Studio
For example C# 'prop' snippet
Visual Studio:
public int MyProperty { get; set; }
LINQPad:
public object Foo { get; set; }
int or object is discussable but MyProperty is so much more recognizable than Foo.
For consistency just stick with Visual Studio definitions (which means int here).
Using different content for the snippets is confusing when accustomed to Visual Studio.
1
vote
Leonel
shared this idea