view UTF8NoPreamble.cs @ 0:3ab940a0c7a0

Initial commit
author Ivo Smits <Ivo@UCIS.nl>
date Tue, 11 Sep 2012 16:28:53 +0200
parents
children 28dc7d535036
line wrap: on
line source

???namespace UCIS {
	public class UTF8NoPreamble : System.Text.UTF8Encoding {
		public override byte[] GetPreamble() {
			return new byte[] { };
		}
	}
}