As per coding standard object name for class is
eg SqlConnection sqlConnection=new SqlConnection();
but when we have class like IPAddress (first 2 char are capital), what will be name of object?
IPAddress iPAddress=new IPAddress();
IPAddress ipAddress=new IPAddress();
IPAddress IPAddress=new IPAddress();
What is best way according to standard.
The best way is to use meaningful names to instances of objects. Start with lower case letters and follow with upper case.
For example:
or
The standard is the rule that you choose to follow in your development according to those who work with you.
This could be interesting http://en.wikipedia.org/wiki/CamelCase