Mobile
There are 2 entries for the tag
Mobile
First Symbian, than Windows Mobile, than the Iphone, now the Google Android platform... the mobile development world is really on movement. These are all great platforms, each of them with their pros and cons (as usual). What about if you have to develop the classic "Hello World" application on each of this platforms? With Symbian it will be something like this: // HelloWorld.cpp//// Copyright (c) 2000 Symbian Ltd. All rights reserved.#include "CommonFramework.h"// do the exampleLOCAL_C void doExampleL(){_LIT(KHelloWorldText,"Hello world!\n");console->Printf(KHelloWorldText);} You will also need an mmp (HelloWorld.mmp) file which contains: // HelloWorld.mmp//// Copyright (c) 2000 Symbian Ltd. All rights reserved.////...
I love when Microsoft releases samples of complete applications that works with the latest technologies: they are really an important way to understand the architectural concepts and an unvaluable guide for developers. The latest release is the Windows Mobile Line of Business Solution Accelerator, a Smart Client built using .NET and SQL Server Compact edition that shows an interesting use of .NET Compact Framework, LINQ, Dynamic SQL, Web Services, WCF, Sync Framework. Absolutely to check... Technorati Tag: .NET,Mobile,LINQ,WCF