Posts Tagged ‘learn C’
Simple C# coding standard
Hello All
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 variable
example...