Open visual studio and click new Project and choose a console application and name it Ninject.Console you should have your solution like that Now lets get the Ninject, I prefer Nuget If you don’t have it installed get it from here http://nuget.codeplex.com/releases or you can search for it in the VS extensions Tools->Extension manager. Open Nuget by right clicking the reference folder in the solution and click manager nugget packages and then search for Ninject and click install Package see screen shot below Configuration part Depending on the type of you app you need to set the configuration cause they must take place at the starting of the app, and since we are in a console application then the most convenient place is the program.cs. there we must create our standard kernel which is the handler which does all the binding. Binding is the operation of registering a type to its interface “will be explained by code later” So for now we need to create a st...
Technical Tips on .NET Technologies, Xaml Xamarin