c# - MonoDevelop not showing dll methods -
i have 2 projects made mono, created c# class library this
namespace testspace { public class testclass { public string id { get; set; } public string name { get; set; } public testclass() { system.guid guid = system.guid.newguid (); id = guid.tostring (); } public void test() { } } }
i compiled , imported dll other project , tried use this
using testspace; namespace project { public class main { testclass tc = new testclass(); public main() { tc.name = "test"; } } }
this works fine , don't error what's weird when type "tc." doesn't show public variable or method available auto-completion. i'm new dlls don't know if that's normal , i'm not using when tried same thing in visual studio showed public methods , variables.
so question if that's normal , shouldn't use dlls (i'm trying code way reuse them in later projects) or if it's bug in mono or bug i'm getting.
i'm using mono-develop v3.0.3.2 on ubuntu 12.10
thanks in advance
Comments
Post a Comment