using System; namespace FDK { /// /// System.String の拡張メソッド。 /// public static class SystemStringExtensions { public static bool Nullでも空でもない( this string 検査対象 ) => ( false == string.IsNullOrEmpty( 検査対象 ) ); public static bool Nullまたは空である( this string 検査対象 ) => string.IsNullOrEmpty( 検査対象 ); } }