// (c) 2006 Richard Grimes // www.grimes.demon.co.uk using System; using System.Collections; using System.Reflection; using System.IO; [assembly: AssemblyKeyFile("lib.snk")] public class LibraryCode { public static string GetData(string str) { StreamReader sr = new StreamReader(str); return sr.ReadToEnd(); } }