I created a C# console application running on a Windows CE device. I have one line of code in the program so far:
Console.WriteLine("Hello World");
Output on Screen: 11
The 11 is the length of the string, so is something converting my string to a character array or something?
I am using the SDK created from the BSP to target my device. In addition, the BSP includes both .NET 2.0 and .NET 3.5 for the OS, and I'm using Visual Studio 2005 for my console application.
Has anyone ever seen this before in a .NET console app? Thanks.
UPDATE: I tried to create a basic Windows Forms app and run that on my device. This time I got an actual error "System.Windows.Forms dll cannot be found", so that indicates to me that .NET is not installed correctly. I have it included in the Platform Builder catalog, so I'm not sure what else might be missing. Any ideas?
Console.WriteLine()in your SDK. I do not run with this particular SDK, so this may not be your answer.