I'm very new Visual Studio and C# coding. I'm curious if there's a way to have a different font color for new object names my code makes. For example, in the below code, I would like to control the foreground (or maybe even background) color for myCommand and myConnection below:
SqlCommand myCommand = myConnection.CreateCommand();
myCommand.CommandText = "GetCustomers";
myCommand.CommandType = System.Data.CommandType.StoredProcedure;
I already tried looking under Tools\Options\Environment\Fonts and Colors; but, I couldn't find the item I was looking for.
Edit
If there isn't a native feature to do this, is there a way to enhance VS2013 to do this?