You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example uses an interface called IService in the registration process, but the line of code that requests the instance of the object all of a sudden uses an interface called IMyService (demonstrated in code snipped below)
var instance = (IService)container.Resolve(typeof(IMyService));
This looks like a typo
The text was updated successfully, but these errors were encountered:
The example uses an interface called IService in the registration process, but the line of code that requests the instance of the object all of a sudden uses an interface called IMyService (demonstrated in code snipped below)
var instance = (IService)container.Resolve(typeof(IMyService));
This looks like a typo
The text was updated successfully, but these errors were encountered: