Static()1 static int Static() 2 { 3 return 1; 4 } 5 CallStaticB()6 int CallStaticB() 7 { 8 return Static(); 9 } 10