手撸IOC

发布时间:2022-06-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了手撸IOC脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
Console.WriteLine("Hello, World!");

MyIocContainer services = new MyIocContainer();

services.AddTransient<ITestService, TestService>();
services.AddTransient<IMyService, MyService>();



var myService = services.GetService<IMyService>();




public class MyIocContainer
{

    Dictionary<Type, Type> _container = new();
    public void AddTransient<TInterface, TImplement>()
    {
        if (_container.ContainsKey(typeof(TInterface)))
        {
            _container.Remove(typeof(TInterface));
        }

        _container.Add(typeof(TInterface), typeof(TImplement));
    }

    public T GetService<T>()
    {

        return (T)GetService(typeof(T), _container);
    }

    private static object GetService(Type interfaceType, Dictionary<Type, Type> container)
    {
        if (!container.ContainsKey(interfaceType))
        {
            throw new Exception($"there is no implement type of {interfaceType.Name}");
        }

        var implementType = container[interfaceType];
        var ctors = implementType.GetConstructors();
        var constructor = ctors.OrderByDescending(x => x.GetParameters().Count()).FirstOrDefault();
        if (constructor is null)
        {
            throw new ArgumentNullException(nameof(constructor));
        }

        var ctorParameters = constructor.GetParameters();

        List<object> parameterList = new();
        foreach (var p in ctorParameters)
        {
            var parameterInterfaceType = p.ParameterType;
            parameterList.Add(GetService(parameterInterfaceType, container));
        }

        return constructor.Invoke(parameterList.ToArray());
    }
}




public interface IMyService { }

public class MyService : IMyService
{
    public MyService(ITestService testService)
    {

    }
}


public interface ITestService { }
public class TestService : ITestService
{

}


脚本宝典总结

以上是脚本宝典为你收集整理的手撸IOC全部内容,希望文章能够帮你解决手撸IOC所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: