In the below program
Class Main{
static string staticVariable = "Static Variable";
string instanceVariable = "Instance Variable";
public Main(){}
}
The instanceVariable will be stored insided the memory allocated for object instance. Where will the static variable go, Is it stored in the object instance itself or some where else? If its stored some where else, how are the memory locations connected?