Top ".net-micro-framework" questions

.NET Micro Framework is a CLR and set of libraries that runs on tiny low-cost microcontrollers with limited resources.

Initializing ArrayList with constant literal

Can the ArrayList below be initialized directly without the need for aFileExt string array? private static string[] aFileExt = {"css", "gif", "…

c# .net .net-micro-framework
Converting 'float' to 'byte[4]' and back to 'float' in .NET Micro Framework

What's the best way to convert a float to a byte[4] and then back to a 'float'? I am doing …

c# embedded .net-micro-framework
Writing C# debug output to .txt file

I'm running code on a microcontroller with .NET Micro Framework, and I want my debug output to write to a …

c# microcontroller .net-micro-framework
How would you split by \r\n if String.Split(String[]) did not exist?

Using the .NET MicroFramework which is a really cut-down version of C#. For instance, System.String barely has any of …

c# string split .net-micro-framework
How to convert this hex string into a long?

I have: "0xE94C827CEB" in hex but as a string. Which is: 1002011000043 (dd mm yyyy HH mm ss) Unfortunately …

c# hex .net-micro-framework netduino
Connect to SQL Server from Microcontroller (Arduino or Fez with .Net Micro Framework)

I'm looking for examples, tutorials, or just "this+this+this should work" for reading from and writing to a SQL …

.net sql microcontroller arduino .net-micro-framework
Cannot implicity convert type 'int' to 'ushort' : already explicity cast

I am trying to explicity cast an int into a ushort but am getting the Cannot implicity convert type 'int' …

c# .net-micro-framework
Draw a sphere using 3D pixels (voxels)

Can you suggest an algorithm that can draw a sphere in 3D space using only the basic plot(x,y,…

algorithm graphics 3d .net-micro-framework
What is the difference betweet Netduino and .NET Gadgeteer?

I wanted to learn .NET Microframework and found that there is (among others) Netduino which is somehow compatible with Arduino. …

.net-micro-framework netduino .net-gadgeteer
Netduino no "Console.WriteLine", Console does not exist in current context

I cannot seem to get my very simple netduino program to write to the debug console; VS throws an error …

.net .net-micro-framework netduino