OSDN Git Service

シンバルミュートチップを実装。
[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 検査文字列 ) => ( string.IsNullOrEmpty( 検査文字列 ) );
11
12                 public static bool Nullでも空でもない( this string 検査文字列 ) => ( !Nullまたは空である( 検査文字列 ) );
13         }
14 }