OSDN Git Service

#30244 Visual Studio 2012 Express for Windows Desktop, StyleCop 4.7, WiX 3.6 に合わせたソース...
[wptscs/wpts.git] / Wptscs / Parsers / MediaWikiLink.cs
index 84e39f4..5848859 100644 (file)
@@ -132,14 +132,14 @@ namespace Honememo.Wptscs.Parsers
             }
 
             // 言語コード・他プロジェクトコードの付加
-            if (!String.IsNullOrEmpty(this.Interwiki))
+            if (!string.IsNullOrEmpty(this.Interwiki))
             {
                 b.Append(this.Interwiki);
                 b.Append(':');
             }
 
             // 記事名の付加
-            if (!String.IsNullOrEmpty(this.Title))
+            if (!string.IsNullOrEmpty(this.Title))
             {
                 b.Append(this.Title);
             }