About 50 results
Open links in new tab
  1. How does the @property decorator work in Python?

    I would like to understand how the built-in function property works. What confuses me is that property can also be used as a decorator, but it only takes arguments when used as a built-in function ...

  2. Angular - How to fix 'property does not exist on type' error?

    Angular - How to fix 'property does not exist on type' error? Asked 7 years, 11 months ago Modified 4 years, 6 months ago Viewed 300k times

  3. What does the => operator mean in a property or method?

    In my situation I had my property auto initialize a command in a ViewModel for a View. I changed the property to use expression bodied initializer and the command CanExecute stopped working. Here's …

  4. Using @property versus getters and setters - Stack Overflow

    Using @property for data access in Python is regarded as Pythonic: It can strengthen your self-identification as a Python (not Java) programmer. It can help your job interview if your interviewer …

  5. What's the difference between meta name and meta property?

    Mar 12, 2014 · The property attribute comes from RDFa. RDFa 1.1 extends HTML5 so that it’s valid to use meta and link elements in the body, as long as they contain a property attribute. You can use …

  6. python - How to make a class property? - Stack Overflow

    Descriptors like property need to be in the type's dictionary to work their magic. So those in a class definition primarily affect the behaviour of instances of the class, with minimal effect on the behaviour …

  7. c# - Cannot set EPPlus licencing to non commercial without code ...

    Oct 18, 2023 · I am trying to convert text in a label in windows forms to an excel file using EPPlus however when setting the licencing the errors 'LicenceContext is a type but being used as a variable' …

  8. python - Dataclasses and property decorator - Stack Overflow

    Jun 28, 2018 · 21 An @property is typically used to store a seemingly public argument (e.g. name) into a private attribute (e.g. _name) through getters and setters, while dataclasses generate the __init__() …

  9. How to exclude property from Json Serialization - Stack Overflow

    I have a DTO class which I Serialize Json.Serialize(MyClass) How can I exclude a public property of it? (It has to be public, as I use it in my code somewhere else)

  10. LINQ's Distinct() on a particular property - Stack Overflow

    Jan 29, 2009 · While it might work in this specific case, it's simply bad practice. What if he wants to distinct by a different property somewhere else? For sure he can't override Equals twice, can he? :-) …