public interface IAnimal
{
}
public interface IDog : IAnimal
{
}
public class Dog : IDog
{
public bool has_two_legs = false;
}
public static class test
{
public static void QueryAnimalProperties(out IAnimal animal_details)
{
//some sql queries
animal_details.has_two_legs = true;
}
public static void Test()
{
Dog my_dog;
test.QueryAnimalProperties(out my_dog);
}
}
When I try to call the function passing and instance of the dog class with the "out" keyword I am receiving an error:
"The best overload for method ... has some invalid arguments"
How am I able to pass a class which implements an interface to my database function to be filled with data?
UPDATE:
test.QueryAnimalProperties(out (IAnimal)my_dog);
Trying to type cast the input also gives an error:
A ref or out argument must be an assignable variable
You don't need an out parameter.
But if you want to use it, then use a Generic Method with constraints.
Note that if you remove the out parameter without modifying the rest of your code, then your application basically depends on what is known as side-effect, which is something you want to avoid in this situation.
http://codebetter.com/matthewpodwysocki/2008/04/30/side-effecting-functions-are-code-smells/