MCQs>IT & Programming>C#>In the sample code given below, which of the data members are accessible from class Y? class X { private int i; protected float f;public char c;}class Y : X { }
C# MCQs
In the sample code given below, which of the data members are accessible from class Y?
class X {
private int i;
protected float f;
public char c;
}
class Y : X { }
Answer
Correct Answer: c
Explanation:
Note: This Question is unanswered, help us to find answer for this one