public static int GetNums()
{
    return ADD(3,2);
}private int ADD(int a,int b)
{
    return a+b;
}
这样将会出错,因为在Static方法中不能访问私有成员,那么上面的这个需求应该怎么实现呢?(注:不能公开ADD方法)