A
Alphapage
Hello,
I build a library and I want to let other developers to add some features to
my library.
For example, I want to provide an interface or abstract class (?) like this:
interface IExample
{
string getstring;
}
So, they implement this interface in their library like this:
class Example:IExample
{
string getstring()
{
return "a string from the developer library";
}
}
The problem is how can I get this string from my own library or is it the
wrong way ?
Thanks in advance for your help.
I build a library and I want to let other developers to add some features to
my library.
For example, I want to provide an interface or abstract class (?) like this:
interface IExample
{
string getstring;
}
So, they implement this interface in their library like this:
class Example:IExample
{
string getstring()
{
return "a string from the developer library";
}
}
The problem is how can I get this string from my own library or is it the
wrong way ?
Thanks in advance for your help.