あん1
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
// 入力文字列をカンマ区切りで分割してリストに変換
string input = "0121,,0123,"; // テストデータ
List<string> TestItems = input.Split(',').ToList();
// 空文字またはNULLの要素をカウント
int emptyOrNullCount = TestItems.Count(string.IsNullOrEmpty);
// 条件に基づいて分岐処理
if (emptyOrNullCount == TestItems.Count)
{
Console.WriteLine("true"); // リスト内のすべての要素が空またはNULL
}
else
{
Console.WriteLine("false"); // リストに空でない要素があります
}
}
}