文件名称:Yggdrasil:WinRT Windows Store 应用程序的简单 IoC 容器
文件大小:669KB
文件格式:ZIP
更新时间:2024-08-02 07:22:01
C#
世界树
适用于 Windows 8.x 和 Windows Phone 8.1 RT Store 应用程序的简单 IoC 容器
入门
假设你有一个界面
public interface ISomething
{
}
然后你有一个位于同一个命名空间中的实现
public class Something : ISomething
{
}
在您的 App 类中,您只需执行以下操作:
sealed partial class App : Application
{
public App()
{
var container = Yggdrasil.ContainerContext.Current;
var instance = container.Get