The [Serializable()] attribute gets inspected at
Which of the following statements are correct about Attributes used in C#.NET?
Which of the following CANNOT be a target for a custom attribute?
Which of the following forms of applying an attribute is correct?
< Serializable() > class sample
{ /* ... */ }(Serializable()) class sample
{ /* ... */ }[ Serializable() ] class sample
{ /* ... */ }Serializablef) class sample
{ /* ... */ }Which of the following statements are correct about Attributes in C#.NET?
Once applied which of the following CANNOT inspect the applied attribute?
Which of the following are correct ways to specify the targets for a custom attribute?
Which of the following correctly describes the contents of the filename AssemblyInfo.cs?
Which of the following is the correct way to apply an attribute to an Assembly?
Which of the following are correct ways to pass a parameter to an attribute?
Which of the following statements are correct about inspecting an attribute in C#.NET?
It possible to create a custom attribute that can be applied only to specific programming element(s) like ____ .
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?
Which of the following is correct ways of applying an attribute?
[WebService (Name = "IndiaBIX", Description = "BIX WebService")]
class AuthenticationService: WebService
{ /* .... */}<WebService ( Name : "IndiaBIX", Description : "BIX WebService" )>
class AuthenticationService: inherits WebService
{ /* .... */}<WebService ( Name = "IndiaBIX", Description = "BIX WebService" )>
class AuthenticationService: extends WebService
{ /* .... */}[WebService ( Name := "IndiaBIX", Description := "BIX WebService")]
class AuthenticationService: inherits WebService
{ /* .... */}Attributes can be applied to