We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Updated Replacing EasyNetQ Components (markdown)
spelling mistake.
Mike you have an error in your code sample. You can't use var in the following code snippet. var logger = new MyLogger(); // MyLogger implements IEasyNetQLogger You have to define it as: IEasyNetQLogger logger = new MyLogger(); The tiny IoC uses typeof (TService) to store the class type in the dictionary and if you use var it will store it as MyLogger instead of the IEasyNetQLogger type and won't be found by the code.
Added Replacing EasyNetQ Components