// File: Add.cs 
namespace UtilityMethods
{
    public class AddClass 
    {
        public static long Add(long i, long j) 
        { 
            return (i + j);
        }
    }
}把这个类做成util.dll后,在命令行输入rundll32 util.dll,Add 3 4,总弹出"丢失条目:Add",这是为什么?