Kenric Nugteren 1 년 전
부모
커밋
e82e29e843
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      InABox.Core/Column.cs

+ 4 - 4
InABox.Core/Column.cs

@@ -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()
         {