Tagged Questions

1
vote
4answers
97 views

C# why can’t a UInt32 be unboxed as UInt64?

Consider: object o = 123456U; ulong l = (ulong) o; // fails But this: object o = 123456U; ulong l = (ulong) (uint) o; // succeeds The real issue I have is that I'd like to have a function that …
2
votes
2answers
138 views

Is using an arraylist of chars faster for performing multiple string concatenation?

I'm using the .Net micro framework so the StringBuilder is not available. I have seen some code from apt professionals to use an Arraylist of chars to concat and build strings, as opposed to the + …
0
votes
2answers
33 views

Serving Silverlight apps from the webserver.

I am building my own web server and want to serve from it a Silverlight application. Is there anything else I have to do besides setting the mime type and pushing the application through the wire? …
2
votes
8answers
178 views

You are not so tough without your car. Fastest lookup list.

I have a collection of structures. Each structure has 2 keys. If I query using key #1, I should get key #2 in return and vice versa. It's easy to write code on the desktop when you have the power …
0
votes
2answers
153 views

Experiences programming with the .NET Micro Framework

A company I consult for is looking, at my urging, to switch to devices powered by the .NET Micro Framework, so that we can bring devices to the market faster. The idea, in theory at least, is that …
1
vote
1answer
65 views

Web Server for my device on the .NET Micro Framework

I want to have a Web Server as an interface for users to tweak my device. The device is being written in the .NET Micro Framework. I can write my own Web Server in C# that serves static pages, …
5
votes
4answers
251 views

.NET Micro Framework Tutorials?

I can't really seem to find any good .NET Micro Framework Tutorials on google. Does anyone know of any?
1
vote
2answers
107 views

As a hobbyist, what do you want in a hardware dev kit for .Net Micro Framework?

As a hobbyist that works on embedded systems/robotics. What would you like to see as hardware features of a Micro Framework development kit? I have seen plenty of questions about what is available, …
1
vote
4answers
694 views

Is the .NET Micro Framework a good way to start with embedded programming?

How does the .NET Micro Framework with a dev board compare to something like an Arduino, or Nintendo DS for starting with embedded programming?
4
votes
2answers
480 views

What is the best .net Micro Framework dev board, for under $300?

I'm looking for a relativity cheap .net Micro Framework development board for use on a personal robotics project. I'd don't need much for I/O, but I want at least one serial port and one Ethernet …
1
vote
1answer
156 views

.NET Microframework SDK with VS 2008

I am trying to get started developing using the .NET Micro Framework but appear to have hit a road block. I am using Visual Studio 2008 and it will not let me install the SDK because I do not have …
0
votes
3answers
713 views

.NET Micro Framework on a ARM Cortex-M3 Core

I have a RDK-IDM from Luminary Micro. This board has a 32-bit ARM® Cortex™-M3 core. Has anybody tried to run a .NET Micro Framework application on such a device?
2
votes
1answer
257 views