插入缺失部分调用MyMethod
两次。
static void MyMethod()
{
Console.WriteLine("I just got executed!");
}
static void Main(string[] args)
{
@(11)
@(11)
}
static void MyMethod()
{
Console.WriteLine("I just got executed!");
}
static void Main(string[] args)
{
MyMethod();
MyMethod();
}