什么是动态加载类并调用它们的最佳方法

时间:2011-08-21 13:03:38

标签: c# .net

这就是我想出来的,但它感觉臃肿而且不整齐。而且我不喜欢我为每个类创建了一个实例来获得正确的实例。

class FileHasher
{
    private readonly List<IHasher> _list;

    public FileHasher()
    {

        _list = new List<IHasher>();
        foreach (var type in Assembly.GetExecutingAssembly().GetTypes())
        {
            if(typeof(IHasher).IsAssignableFrom(type) && type.IsClass)
                _list.Add((IHasher) Activator.CreateInstance(type));
        }

    }

    public HashReturn GetHashFromFile(string file, HashFileType hashType)
    {
        var hashReturn = new HashReturn();

        IHasher iHasher = _list.Find(hasher => hasher.HashType == hashType);

        hashReturn.Hash = iHasher.FileToHash(file);

        return hashReturn;
    }

    public HashReturn GetHashFromString(string str, HashFileType hashType)
    {
        var hashReturn = new HashReturn();

        IHasher iHasher = _list.Find(hasher => hasher.HashType == hashType);

        hashReturn.Hash = iHasher.StringToHash(str);

        return hashReturn;
    }


}

internal class HashReturn
{
    public Exception Error { get; set; }
    public string Hash { get; set; }
    public bool Success { get; set; }
}

enum HashFileType
{
    CRC32,
    MD5
}

internal interface IHasher
{
    HashFileType HashType { get; }
    string FileToHash(string file);
    string StringToHash(string str);
}

class MD5Hasher : IHasher
{
    public HashFileType HashType { get { return HashFileType.MD5; } }

    public string FileToHash(string file)
    {
        return "";
    }

    public string StringToHash(string str)
    {
        return "";
    }
}

class CRC32Hasher : IHasher
{
    public HashFileType HashType { get { return HashFileType.CRC32; } }

    public string FileToHash(string file)
    {
        return "";
    }

    public string StringToHash(string str)
    {
        return "";
    }
}

1 个答案:

答案 0 :(得分:1)

MEF很好地为您解决了这个问题。 http://mef.codeplex.com/

它包含在.NET 4中。