Click here to Skip to main content
15,895,142 members
Articles / Programming Languages / C#

Linux Todolist

Rate me:
Please Sign up or sign in to vote.
4.59/5 (15 votes)
28 Jan 2008GPL35 min read 74.1K   2.3K   53  
A simple todolist designed for an Asus Eee Pc
/*
 * Created by SharpDevelop.
 * User: andy
 * Date: 11/01/2008
 * Time: 18:24
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */

using System;
using System.Xml;
using System.Xml.Serialization;
using System.IO;
using System.Text;

namespace uk.org.aspellclark.common
{
	/// <summary>
	/// Description of UTF8Funcs.
	/// </summary>
	public class UTF8Funcs
	{
		public static string UTF8ByteArrayToString(Byte[] characters) 
		{
			UTF8Encoding encoding = new UTF8Encoding();
			String constructedString = encoding.GetString(characters);
			return (constructedString);
		 }
		 
		 public static Byte[] StringToUTF8ByteArray(string pXmlString)
		 {
		     UTF8Encoding encoding = new UTF8Encoding();
		     Byte[] byteArray = encoding.GetBytes(pXmlString);
		     return byteArray;
		 } 
	}
}

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 GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Airbus Defense and Space
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions