Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Classy NamingNew to Visual Studio Code? Get it now.
Classy Naming

Classy Naming

Andrei Zubov

|
33,764 installs
| (3) | Free
Provides suggestions for field and parameter names for C#
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Classy Naming

Provides suggestions for field and parameter names for C#

What is it for?

Just look at that code:

public class BandDataProcessor
{
	private readonly IBandDataProvier _dataProvider;
	private readonly IBandFromatter _formatter;
	private readonly BandParser _bandParser;
	
	public BandDataProcessor(IBandDataProvier dataProvider, 
		IBandFromatter formatter, 
		BandParser bandParser)
	{
		...
	}
}

Looks familiar, right? We all tend to stick to pretty much same naming conventions and tend to name parameters or fields after the types they represent. While your IDE (and VS Code does it for sure) will suggest you the type name after a few keystrokes, you normally have to type in the name from the begining to the end. How fun can that be? No fun at all.

ClassyNaming is there to save you from dying of boredom when naming your fields. Just start typing a variable name or activate an IntellySense by a keyboard shortcut and it will suggest you the most obvious options to chose from!

See how it works


License

MIT © Andrei Zubov

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft