Hello,
Im having this problem with public interface, i want to use this method (is on a .dll)
namespace DS.GS.Admin
{
public interface BrokerAdmin
{
int GetCount();
}
But i dont know how to call it, I try:
DS.GS.Admin.BrokerAdmin ba;
int a = ba.GetCount(); -> Error
And:
DS.GS.Admin.BrokerAdmin ba = new DS.GS.Admin.BrokerAdmin(); -> Error
And:
int a = DS.GS.Admin.BrokerAdmin.GetCount(); -> Error
Those are my first steps whit C# and i really appreciate all the help you gave me.
Thanks.