コード例 #1
0
 public UsesServiceLocaator(string test)
 {
     other = ServiceLocator.Container.Resolve <DependsOnStringTest2>(new Dictionary <string, string> {
         { "test2", "bla" }
     });
 }
コード例 #2
0
ファイル: IoC-138.cs プロジェクト: dohansen/Windsor
			public UsesServiceLocaator(string test)
			{
				other = ServiceLocator.Container.Resolve<DependsOnStringTest2>(new Dictionary<string, string> { { "test2", "bla" } });
			}
コード例 #3
0
 public UsesServiceLocator(string test)
 {
     other = ServiceLocator.Container.Resolve <DependsOnStringTest2>(new Arguments {
         { "test2", "bla" }
     });
 }