Yes, we can call static method from abstract class.
Here is the example.
public abstract class TestAbstract
{
public static string test()
{
return "Yes we can call static method from abstract class";
}
}
Calling part
===========
class Program
{
static void Main(string[] args)
{
string test = TestAbstract.test();
}
}