315.
What is the obvious problem below using System; abstract class A { abstract public int Rnd(); } class B : A { public int Rnd() { return new Random(1000).Next(); } static void Main() { } }
View Description
No description found.