If a method in a class has a const variable such as:
public void MyMethod()
{
const int myVariable = 5;
// blah
}
will myVariable be initialized only once (when the method is called for the first time I believe) or everytime the method is called ?