Пример #1
0
            /// <summary>
            /// Gets the first string custom type
            /// </summary>
            /// <param name="tagname"></param>
            /// <returns></returns>
            public string GetCustomStringTag(string tagname)
            {
                s_customType ty   = CustomTypes.Find(x => x.name == tagname);
                List <int>   ints = new List <int>();

                return(ty.type3);
            }
Пример #2
0
 public s_customType FindType(string nameoftype)
 {
     if (CustomTypes != null)
     {
         return(CustomTypes.Find(x => x.name == nameoftype));
     }
     else
     {
         return(new s_customType("Null", 0));
     }
 }