public static class StringExtensions { /// /// nullまたは空かを確認します。 /// static public bool IsNullOrEmpty( this string self ) { return string.IsNullOrEmpty(self); } }