Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: ServiceLocator.Instance is obsolete, so I changed it to ServiceLocator.Default. Furthermore Resolve doesn't exist in ServiceLocator.Default so I changed it to ResolveType.

...

Code Block
ServiceLocator.InstanceDefault.RegisterTypeIfNotYetRegistered<ISplashScreenService, SplashScreenService>();
/*...*/
var splashScreenService = ServiceLocator.InstanceDefault.Resolve<ISplashScreenService>ResolveType<ISplashScreenService>();

To en-queue tasks use the following code:

...