views:

379

answers:

4

Hi,

Is their any IoC controllers available that will work on .NET Compact Framework?

+3  A: 

Ninject is a dependency injection framework that has a compact framework version.

However, in a constrained environment I would avoid using a framework and implement the inversion of control principles in my code instead.

kgiannakakis
A: 

Here's a new one: Funq. Also check out the making-of screencasts.

Mauricio Scheffer
+1  A: 

There's also one available here.

ctacke