OSDN Git Service

null画像、ノード画像の表示まで実装。
[strokestylet/CsWin10Desktop3.git] / FDK24 / SystemStringExtensions.cs
1 using System;
2
3 namespace FDK
4 {
5         /// <summary>
6         /// System.String の拡張メソッド。
7         /// </summary>
8         public static class SystemStringExtensions
9         {
10                 public static bool Nullでも空でもない( this string 検査対象 ) => ( false == string.IsNullOrEmpty( 検査対象 ) );
11                 public static bool Nullまたは空である( this string 検査対象 ) => string.IsNullOrEmpty( 検査対象 );
12         }
13 }