Click or drag to resize
PropertyBackingFieldAttribute Constructor (String)
Initializes a new instance of the PropertyBackingFieldAttribute class that uses the default PropertyDrawer for the field type.

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
public PropertyBackingFieldAttribute(
	string propertyName
)

Parameters

propertyName
Type: SystemString
Name of the getter/setter property corresponding to the backing field, or name of getter/setter methods. For example, "Character" could refer to either a property Character { get; set; } or a pair of methods GetCharacter() and SetCharacter().
See Also