
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
What are predefined attributes in C#?
The following are the predefined attributes in C# −
- AttributeUsage
- Conditional
- Obsolete
AttributeUsage
The pre-defined attribute AttributeUsage describes how a custom attribute class can be used. Here is the syntax −
[AttributeUsage ( validon, AllowMultiple = allowmultiple, Inherited = inherited )]
Conditional
This predefined attribute marks a conditional method whose execution depends on a specified preprocessing identifier. It causes conditional compilation of method calls, depending on the specified value such as Debug or Trace.
The following is the syntax −
[Conditional( conditionalSymbol )]
Obsolete
This predefined attribute marks a program entity that should not be used. It enables you to inform the compiler to discard a particular target element. Here is the syntax −
[Obsolete ( message )] [Obsolete ( message, iserror )]
- Related Articles
- What are the predefined functions in C language?
- What are event attributes in jQuery?
- What are the attributes in C#?
- What are conditional attributes in C#?
- What are obsolete attributes in C#?
- What are built-in class attributes in Python?
- What are the DataTransfer object attributes?
- What is a predefined package in Java?
- What are the methods in jQuery to manipulate attributes?
- What are various attributes Of page directive in JSP?
- What are the attributes of a file object in Python?
- What are the attributes of programming languages in compiler design?
- PHP Predefined Variables
- Predefined Identifier __func__ in C
- What are the attributes of a Perfect Capital Market?

Advertisements