A
Adam Klobukowski
Consider following example:
class A
{
public static Method()
{
/* ... */
}
}
class B : A
{
}
How can i chcek in Method() if it was called as B.Method() or A.Method()?
class A
{
public static Method()
{
/* ... */
}
}
class B : A
{
}
How can i chcek in Method() if it was called as B.Method() or A.Method()?