New functions

This commit is contained in:
Felix Weiß
2023-07-23 15:29:29 +02:00
parent eec1479406
commit bf78156a9d
17 changed files with 701 additions and 175 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Xml.Linq;
using CommandLine;
using MewtocolNet;
using MewtocolNet.ComCassette;
@@ -21,8 +22,9 @@ internal class ListSupportCommand : CommandLineExcecuteable {
var decomp = plcT.ToNameDecompose();
foreach (var name in decomp)
lst.Add(name);
if (decomp == null) continue;
lst.Add(decomp);
}