Home / C# Programming / Attributes :: Discussion

Discussion :: Attributes

  1. Which of the following is correct ways of applying an attribute?

  2. A.
    [WebService (Name = "FresherGate", Description = "Gate WebService")]  class AuthenticationService: WebService { /* .... */}
    B.
    "FresherGate", Description : "Gate WebService" )>  class AuthenticationService: inherits WebService { /* .... */}
    C.
    "FresherGate", Description = "Gate WebService" )>  class AuthenticationService: extends WebService { /* .... */}
    D.
    [WebService ( Name := "FresherGate", Description := "Gate WebService")]  class AuthenticationService: inherits WebService { /* .... */}

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment