Home / C# Programming / Properties :: Discussion

Discussion :: Properties

  1. If Sample class has a Length property with set accessor then which of the following statements will work correctly?

  2. A.
    Sample m = new Sample(); 
    int l;
    l= m.Length;
    B.
    Sample m = new Sample();
    m.Length = m.Length + 20;
    C.
    Sample.Length = 20;
    D.
    Console.WriteLine (Sample.Length);
    E.
    Sample m = new Sample();
    m.Length = 10;

    View Answer

    Workspace

    Answer : Option E

    Explanation :

    No answer description available for this question.


Be The First To Comment