new to .net

  • Thread starter Thread starter genexk
  • Start date Start date
G

genexk

Hi everyone,
I am new to .net development, and still have a few questions.
Since I am doing a pocket pc project, does it mean whatever I wrote in
c# will work on pocket pc because of the indepency of .net cf?
In addition, if I already have some code written in C++, how can I use
them without writing the entire thing?
Thanks in advance~

KX
 
does it mean whatever I wrote in c# will work on pocket pc because of the indepency of .net cf?

no, only some functions are supported in the cf. MSDN usualy tells you
if a function is available in cf.

If you already have code in c++ I sugest porting it to c#.. The
exersize will do you good :)

good luck any happy coding.


-dm
 
no, only some functions are supported in the cf. MSDN usualy tells you
if a function is available in cf.

If you already have code in c++ I sugest porting it to c#.. The
exersize will do you good :)

good luck any happy coding.

If C++ code can be encapsulated in a dll, then interop is another option.
 
Back
Top