Click here to Skip to main content
15,881,281 members
Articles / Programming Languages / C#

How we can write on C# in Linux: Implementing PanelApplet to Gnome Desktop

Rate me:
Please Sign up or sign in to vote.
4.86/5 (48 votes)
8 Mar 2010CPOL12 min read 84.8K   382   95  
This article describes how we can use our programming skills on the .NET framework to implement platform-independent code
using System;
using System.IO;
using System.Text;
using System.Xml;
using System.Xml.Serialization;

namespace WeatherApplet.Data
{
	public class CurrentWeather
	{
		public string Location {get;set;}
		public string Time {get;set;}
		public string Wind {get;set;}
		public string Visibility {get;set;}
		public string SkyConditions {get;set;}
		public string Temperature {get;set;}
		public string DewPoint {get;set;}
		public string RelativeHumidity {get;set;}
		public string Pressure {get;set;}
		

		public CurrentWeather ()
		{
		}
		
		public static CurrentWeather Create(string xml)
		{
			 if (String.IsNullOrEmpty(xml))
                return new CurrentWeather();
                        
            try
            {
                XmlSerializer sr = new XmlSerializer(typeof(CurrentWeather));
                MemoryStream memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(xml));
                               
                return (CurrentWeather)sr.Deserialize(memoryStream);
            }
            catch
            {
                return new CurrentWeather();
            }
		}
		
		
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Nokia
Germany Germany
Interested in design/development of framework functionality using the best patterns and practices.

Comments and Discussions