コード例 #1
0
ファイル: Container.cs プロジェクト: vladdou/dotnetex
 public void Register <TInterface>(string fullTypeName)
 {
     instances.Add(typeof(TInterface), EntityPtr.ToInstance <Object>(appdomain.CreateInstance(fullTypeName)));
 }
コード例 #2
0
ファイル: Container.cs プロジェクト: ypog07/dotnetex
 public void Register <TInterface>(string fullTypeName)
 {
     instances.Add(typeof(TInterface), appdomain.CreateInstance(fullTypeName));
 }