4、工厂类

using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;

namespace Factory
{
    public class DtatAccess
    {
        public static object CreateDAL(string DALName)
        {
            return Assembly.Load("ServerDAL").CreateInstance("ServerDAL." + DALName);
        }
    }
}

posted on 2008-07-17 12:24  自己  阅读(217)  评论(0编辑  收藏  举报