porting to windows mobile 5.0

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,

I'm new in CF. I want to port a source code to windows mobile 5.0. Could i
use following namespaces in CF ?

using System;

using System.Threading;

using System.Net;

using System.Text;

using System.Text.RegularExpressions;

using System.Reflection;

using System.IO;

using System.Security;

using System.Security.Permissions;

using System.Xml;

using System.Diagnostics;

using System.Collections;

using System.Collections.Generic;

using System.Collections.Specialized;

using System.Security.Principal;

using System.Security.Policy;

using Microsoft.Win32;

using System.Net.Sockets;

using System.Net.NetworkInformation;
 
Not all of them and in any case you should be drilling into classes and even
further into methods and even further into overloads of methods. In other
words, what is supported and what not is at a finer granularity than a
namespace.

Check the links here for differences between the frameworks:
http://www.danielmoth.com/Blog/2005/09/dotnet-changes.html

Cheers
Daniel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top