|
@@ -42,11 +42,11 @@ namespace InABox.Core
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public bool IsEqualTo(String name) =>
|
|
|
- !String.IsNullOrWhiteSpace(name) && String.Equals(Property, name);
|
|
|
+ public bool IsEqualTo(string name) =>
|
|
|
+ !string.IsNullOrWhiteSpace(name) && string.Equals(Property, name);
|
|
|
|
|
|
- public bool IsParentOf(String name) =>
|
|
|
- !String.IsNullOrWhiteSpace(name) && name.StartsWith(Property + ".");
|
|
|
+ public bool IsParentOf(string name) =>
|
|
|
+ !string.IsNullOrWhiteSpace(name) && name.StartsWith(Property + ".");
|
|
|
|
|
|
public Column()
|
|
|
{
|