Programming Convention - MirumStudio/Radix GitHub Wiki
Programming Convention
This is an exemple of a class with the programming convention
public class ClassA : ClassB { private string mVariable; //m for Member, if we use (get/set) mVariable outside the class, we must create Get/Set
public void MethodA(string pVariable) // p for Parameter { var userA = new User(); //Here, we use var because it's clear that we create an user User userB; //Here, we user User because it isn't clear that we create an user
} }