I am writing a weather API to connect to the NOAA's XML METARS in C# NETMF. Before, this API was written in PHP, where I was able to use an associative array to return the weather parameters. For example, the return of the getWX() function might have been

Array( "temp_f" => "70.0", "windchil" => "65.0", "wind_dir" => "90" );

I am trying to replicate that same functionality in my CSharp version, but I am not sure how to go about doing it. Since I am using NETMF, I cannot use a hashtable.

Should I use a struct instead?

In case anyone wants to see the code behind the original PHP API, it is here: http://www.chrisseto.com/wordpress/?p=17 I am trying to get the CSharp version to be as similar as possible.

Thanks!

link|improve this question

1  
What do you mean, if I'm reading the documentation correctly (and I'd like to think I am), Hashtable class is very much available in 4.1 – R0MANARMY Jun 4 '10 at 3:55
My platform is, and will be 4.0 for some months. The OEM has to update the runtime, so I am at their mercy. – chris12892 Jun 4 '10 at 4:06
Never used NETMF, but does it not contain collections (in 4.0)? Dictionary<string,string> for example? – Wolf5 Jun 4 '10 at 8:29
Yeah! It does seem to have a dictionary collection in 4.0! Would that be appropriate for me to use for such a project? – chris12892 Jun 4 '10 at 14:27
I do not see why you can not use the dictionary. A dictionary is practically a strong typed Hashtable. – Wolf5 Jun 9 '10 at 11:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.