C# Naming Convention
xxxxxxxxxx
class PascalCaseNamedClass { int PascalCaseNamedProperty{get;set;}}
int camelCaseNamedVariablesAndMethodsParametersNames
use 4 indentations or (two tabs) before any statement
interface IPascalCaseInterface{}
namespace PascalCaseNamedNamespace{}
void camelCaseNamedMethod{}
// for methods which driven from monobehavior if you develop in unity you need to use pascal case
// note you neet to follow the team coding convention for the code style
xxxxxxxxxx
// In C#, the standard naming convention for namespaces is to use PascalCase.
// A namespace should generally have a unique and descriptive name that reflects its purpose.
namespace MyProject
{
// Example namespace for a project called 'MyProject'
}