Example #1
0
        public object Clone()
        {
            LoaderTag tag = new LoaderTag();

            tag.Name = Name != null ? (string)Name.Clone() : null;
            return(tag);
        }
Example #2
0
            private static LoaderTag[] GetTags(Hashtable settings)
            {
                if (settings == null)
                {
                    return(null);
                }
                LoaderTag[] tags = new LoaderTag[settings.Count];
                for (int i = 0; i < settings.Count; i++)
                {
                    tags[i]      = new LoaderTag();
                    tags[i].Name = (string)settings[i];
                }

                return(tags);
            }