Beispiel #1
0
        private string GetSegTypeName(SMPathSegment pathSeg)
        {
            SMPathOut pathSegOut = pathSeg.First;
            string    typeName   = typeName = pathSegOut.GetType().Name.Substring(6);

            if (pathSegOut is SMPathOutBool)
            {
                typeName += (pathSegOut as SMPathOutBool).ID;
            }
            return(typeName);
        }