I have general knowledge of how the static variable works where it's saved in RAM. But what if the static class has a method having more than 1000 + lines, then where is it gone and use it for the lift time of the application. I understand that that could a duplicate question. If anybody answered to this question, please reply below.
public static class staticClass
{
public static int LongMethod()
{
// more than 1000 lines in this method
}
}