Clock.Desktop.Uwp/DataProvider.cs [8:24]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - internal class DataProvider { private readonly IContainer _container = (Application.Current as App)?.Container // Resolves from Design Time Container ?? Container.Create().Using(); private Type _objectType; public string ObjectType { set => _objectType = value != null ? Type.GetType(value, true) : typeof(object); } public object Tag { get; set; } public object It => _container.Resolve(_objectType, Tag); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Clock.Xamarin/DataProvider.cs [8:25]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - internal class DataProvider { private readonly IContainer _container = (Application.Current as App)?.Container // Resolves from Design Time Container ?? Container.Create().Using(); private Type _objectType; public string ObjectType { set => _objectType = value != null ? Type.GetType(value, true) : typeof(object); } // ReSharper disable once UnusedAutoPropertyAccessor.Global public object Tag { get; set; } public object It => _container.Resolve(_objectType, Tag); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -