using System;using System.Collections.Generic;using System.Linq;using System.Text;using Ninject;namespace DIPTest{ class Program { static void Main(string[] args) { StandardKernel kernel = new StandardKernel();//创建Ioc容器 kernel.Bind().To();//注册依赖 Order order = kernel.Get<Order>();//获取目标对象 order.Add(); Console.Read(); } }}