あん2
string inputData = "0121,0122,0123,0124";
// カンマ区切りで文字列を分割して配列に変換
string[] TestItems = inputData.Split(',');
// 空文字またはNULLの要素をカウント
int emptyOrNullCount = TestItems.Count(string.IsNullOrEmpty);
// 条件に基づいて分岐処理
if (emptyOrNullCount == TestItems.Length) // 配列のサイズを比較
{
Console.WriteLine("true"); // 配列内のすべての要素が空またはNULL
}
else
{
Console.WriteLine("false"); // 配列に空でない要素があります
}