Home / C# Programming / Attributes :: Discussion

Discussion :: Attributes

  1. Which of the following is the correct way of applying the custom attribute called Tested which receives two-arguments - name of the tester and the testgrade?

    1. Custom attribute cannot be applied to an assembly.
    2. [assembly: Tested("Sachin", testgrade.Good)]
    3. [Tested("Virat", testgrade.Excellent)]
      class customer { /* .... */ }
    4. Custom attribute cannot be applied to a method.
    5. Custom attribute cannot be applied to a class.

  2. A.
    1 only
    B.
    1, 5
    C.
    2, 3
    D.
    4, 5
    E.
    None of the above

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment