| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 501 人关注过本帖
标题:短短的
只看楼主 加入收藏
陈天
Rank: 1
等 级:新手上路
帖 子:66
专家分:0
注 册:2007-2-6
收藏
 问题点数:0 回复次数:1 
短短的

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

using IDAL;

namespace DALFactory
{
/// <summary>
/// Abstract Factory class pattern to create the DAL implementation
/// </summary>
public class DBAccess
{
//look up the DAL implementation we should be using
private static readonly string path = "SqlServerDAL";

/// <summary>
/// Default constructor
/// </summary>
public DBAccess() { }

public static IUser CreateUser()
{
string classname = path + ".User";
return (IUser)Assembly.Load(path).CreateInstance(classname);
}
}
}

其中SqlServerDAL为具体实现。但是为什么出现这样的错误“Could not load file or assembly 'SqlServerDAL' or one of its dependencies. The system cannot find the file specified. ”

2007-02-12 16:22
bygg
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:乖乖的心中
等 级:版主
威 望:241
帖 子:13555
专家分:3076
注 册:2006-10-23
收藏
得分:0 

是不是前面还有一层哦??


飘过~~
2007-02-12 20:20
快速回复:短短的
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017735 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved