Which of the following statement is correct about the C#.NET code snippet given below?
public class Sample{ public int x; public virtual void fun() { }}public class DerivedSample : Sample{ new public void fun() { }}
Answer: Option A
Explanation: