About 55,100,000 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 …

  2. How to get a property value based on the name - Stack Overflow

    To see how to Set the property value, based on a propertyName string, see the answer here: Setting the value of properties via reflection

  3. .net - What's the difference between a dependency property and …

    Aug 6, 2009 · There is a difference between registering a dependency property as a regular and as an attached property, other than a "philosophical" one (regular properties are intended to …

  4. Using PropertyInfo to find out the property type - Stack Overflow

    Sep 16, 2010 · Using PropertyInfo to find out the property type Asked 15 years, 3 months ago Modified 5 years, 2 months ago Viewed 204k times

  5. .net - Get value of a specific object property in C# without …

    Jul 9, 2012 · Get value of a specific object property in C# without knowing the class behind Asked 13 years, 6 months ago Modified 4 years, 8 months ago Viewed 213k times

  6. Python class variables or @property - Stack Overflow

    Jul 1, 2017 · A property can be added later if additional actions are required when getting or setting. Most of the modules in the standard library follow this practice. Public variables (not …

  7. error TS2339: Property 'x' does not exist on type 'Y'

    When accessing a property, the "dot" syntax (images.main) supposes, I think, that it already exists. I had such problems without Typescript, in "vanilla" Javascript, where I tried to access …

  8. How to implement a property in an interface - Stack Overflow

    In the interface, there is no code. You just specify that there is a property with a getter and a setter, whatever they will do. In the class, you actually implement them. The shortest way to do …

  9. What is the difference between a field and a property?

    Nov 17, 2008 · A property should always encapsulate one or more fields, and should never do any heavy lifting or validation. If you need a property such a UserName or Password to have …

  10. OOP Terminology: class, attribute, property, field, data member

    For instance in this article I read this (.. class attribute (or class property, field, or data member) I have seen rather well cut out questions that show that there is a difference between class …