I have a Service class implementing a contract as follows:
interface IContractFoo
{
void Foo();
}
Class ServiceFoo() : IContractFoo
{
public static ServiceFoo()
{
Log("Static constructor called");
}
void Foo()
{
Log("Foo called");
}
}
What i am finiding is that each time the Foo API is called, the static constructor gets called. So, the log looks like this -
Static constructor called
Foo called
Static constructor called
Foo called
This should not be happening since this is a static constructor. Any idea what could be going wrong?
Thanks for any help