rudigrobler
rudigrobler

Reputation: 17143

IoC/DI Container that supports Compact Framework

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

Upvotes: 7

Views: 1856

Answers (4)

Mauricio Scheffer
Mauricio Scheffer

Reputation: 99750

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

Upvotes: 0

ctacke
ctacke

Reputation: 67178

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.

Upvotes: 4

kgiannakakis
kgiannakakis

Reputation: 104188

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.

Upvotes: 3

Related Questions