7

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

Jon Seigel
  • 12,251
  • 8
  • 58
  • 92
rudigrobler
  • 17,045
  • 12
  • 60
  • 74

4 Answers4

4
aku
  • 122,288
  • 32
  • 173
  • 203
4

The OpenNETCF IoC framework supports the Compact Framework (as a first-class citizen), the full desktop framework, Mono for Android, MonoTouch and Windows Phone. It's also still active, with updates and fixes still being applied which can't be said about all of the other "CF supporting" frameworks.

ctacke
  • 66,480
  • 18
  • 94
  • 155
3

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
  • 103,016
  • 27
  • 158
  • 194
0

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

ctacke
  • 66,480
  • 18
  • 94
  • 155
Mauricio Scheffer
  • 98,863
  • 23
  • 192
  • 275