Important coding standard


To day I will go through about coding standard which we must have to follow during development .

1.Pascal casing  should have to follow in Class & Method naming

example : public class TestClass{}; public void TestMethod(){};

2.Camel casing should have to follow in writing and local variable and parameter.

example : int localCounter;public void TestMethod(int counter){};

3. “_” should have to given while starting a private variableexample : private string _localAddress;

4. “I” character should have to place before the name of any interface.

example: interface IDataCollection{};

there are some vital information about coding standard here .

Bye


Leave a Reply