About 20,600 results
Open links in new tab
  1. Attributes - C# language specification | Microsoft Learn

    This chapter covers attributes. Attributes are metadata types that can be applied to many program elements: classes, structs, assemblies, members, and arguments.

  2. The PARAMETER Attribute - Michigan Technological University

    Add PARAMETER in front of the double colon (::) and use a comma to separate the type name (i.e., REAL) and the word PARAMETER Following each name, one should add an equal sign (=) followed …

  3. What is the [Parameter] Attribute in c# - Stack Overflow

    Oct 23, 2019 · This is explained in Create and use ASP.NET Core Razor components, specifically in the Component Parameters section. [Parameter] is used to mark the component parameters that can be …

  4. Attribute vs. Parameter - What's the Difference? | This vs. That

    While attributes are associated with objects and provide information about them, parameters are used to control the behavior or customize the functionality of functions or methods.

  5. What Are Parameter Attributes in C# and How to Use Them?

    Discover how to utilize parameter attributes in C#. Get detailed explanations, examples, and common mistakes to avoid.

  6. Attributes in C# - GeeksforGeeks

    Oct 23, 2025 · Attributes are enclosed within square brackets [ ] and placed directly above the element they describe. Attributes can have parameters similar to methods or constructors. A code element …

  7. Attribute vs. Parameter — What’s the Difference?

    Nov 5, 2023 · The words attribute and parameter, while both used in the realm of computing and programming, denote distinct concepts. An attribute pertains to the specific property or quality that an …

  8. C# Attributes - Online Tutorials Library

    Learn about C# attributes, their usage, and how to apply them effectively in your C# programming projects.

  9. Attribute vs Parameter vs Property - Titan Fusion

    Attributes and properties are terms frequently used interchangeably! The definitions of these two terms are very much relevant to the context within which they are used, and different programming …

  10. A Walkthrough of C# Attributes

    In this article, we’re going to explore the basics of attributes, what are the common ones, how to create and read attributes