using com.andoutomo.kybernetes.command; namespace com.andoutomo.kybernetes.command.control { class ChnumCommandArg:StandardCommandArg { public int nextSortID { get; private set; } protected override void split() { if (splitData.Length == 2) { isValid = false; return; } int wkTarget; if (int.TryParse(splitData[2], out wkTarget)) { nextSortID = wkTarget; } else { isValid = false; } } } }