We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1593bc2 commit 3cacf40Copy full SHA for 3cacf40
1 file changed
Src/Setting.cs
@@ -41,24 +41,6 @@ public Setting(string name, object value) : base(name)
41
/// </summary>
42
public bool IsEmpty => string.IsNullOrEmpty(RawValue);
43
44
- /// <summary>
45
- /// Gets the value of this setting as a <see cref="string"/>, with quotes removed if present.
46
- /// </summary>
47
- [Obsolete("Use StringValue instead")]
48
- public string StringValueTrimmed
49
- {
50
- get {
51
- string value = StringValue;
52
-
53
- if (value[0] == '\"')
54
55
- value = value.Trim('\"');
56
- }
57
58
- return value;
59
60
61
62
/// <summary>
63
/// Gets or sets the raw value of this setting.
64
0 commit comments