Goober
Goober

Reputation: 13508

.Net Compact Framework & WinCE Question

I have never had any experience working with the compact framework or WinCE, however, I have a fair bit of experience developing in C#.

How different is it developing for these platforms as opposed to just normal console or winforms applications in C#?

Easy to pickup or are there lots of differences?

Regards

Upvotes: 2

Views: 733

Answers (3)

tjjjohnson
tjjjohnson

Reputation: 3400

It's pretty easy to start developing for compact framework, quite fun too. GUI design requires the biggest change in thinking as you have to deal with the reduced screen size and lack of a proper keyboard.

Upvotes: 0

Scott Ewers
Scott Ewers

Reputation: 664

Learning to program in the .NET CF is about learning to live with, and work around, limitations. The framework offers less, the OS offers less, and the device offers less than you are used to working with in a Win or Web app. Things that you take for granted in standard .NET Framework programming, like configuration management, networking, XML, web services, etc. are different and almost always more complex in the .NET CF. On the device, you now have to deal with screen orientation changes, differences in screen resolution between devices, memory and storage limitations, and variable network availability issues.

My advice in learning the .NET CF is to get your hands dirty and create some sample apps that flex different parts of the framework. Also check out the below page for some really good videos to get you started.

.NET CF videos

.NET CF is fun, enjoy it!

Upvotes: 4

Tom van Enckevort
Tom van Enckevort

Reputation: 4198

The .NET Compact Framework is basically a subset from the full framework, so it is pretty similar. Have a look here for some more info on differences between the frameworks.

Upvotes: 0

Related Questions