using System;

class Class
{
    public void MethodA(string arg)
    {
        string xxx = "";
        Console.WriteLine(xxx);
    }

    public void MethodB(string arg)
    {
        MethodA(arg);
    }
}
