using System; namespace lliurex { namespace controlcenter { public class UniconfManager { [System.Runtime.InteropServices.DllImport ("/home/hector/uniconf_new/wvstreams-4.6.1/libuniconf.so")] public static extern string mono_get(string moniker, string key); public UniconfManager () { Console.WriteLine("[UniconfManager] Testing"); string str=mono_get("ini:/home/hector/list2.cfg","ip"); Console.WriteLine(str); } } } }