I want a class to have an enforced static method called GetProduct, so that client code can accept a type and safely call that static method after checking that the passed type implements an interface called ICommandThatHasProduct.
It seems that this is not possible, so now I'm seeking help in finding a way I can achieve this. I know that I could use reflection to see if the type I am passed contains a method called "GetProduct" but I am hoping there is a more object-oriented way (i.e. using inheritance).
Any help will be appreciated! The below code is pseudo-c#, definitely will not compile.
public interface ICommandThatHasProduct
{
object GetProduct(int id);
}
public abstract class Command : ICommandThatHasProduct
{
// I want to be able to make the GetProduct method static
// so that calling code can safely call it
public static object GetProduct(int id)
{
// do stuff with id to get the product
}
public object Execute()
{
CommandWillExecute();
}
public abstract object CommandWillExecute();
}
public class Program
{
public Program(Type type, int productId)
{
if(type == ICommandThatHasProduct)
{
// Create the args
var args = object[1]{ productId };
// Invoke the GetProduct method and pass the args
var product = type.InvokeMethod("GetProduct", args);
//do stuff with product
}
throw new Execption("Cannot pass in a Command that does not implement ICommandHasProduct");
}
}
staticmethods don't really apply to general OO concepts. – M.Babcock Jan 17 at 3:15