Class Definition
- Namespace
- SunamoEditorConfig
- Assembly
- SunamoEditorConfig.dll
Represents a single key-value definition in an EditorConfig file (e.g., "indent_style = space")
public class Definition
- Inheritance
-
Definition
- Inherited Members
- Extension Methods
Constructors
Definition(string, string)
Initializes a new instance of the Definition class
public Definition(string key, string value)
Parameters
Properties
Key
Gets or sets the setting key
public string Key { get; set; }
Property Value
Value
Gets or sets the setting value
public string Value { get; set; }
Property Value
Methods
ToString()
Converts the definition to its string representation in EditorConfig format (key=value)
public override string ToString()
Returns
- string
The EditorConfig formatted string