Example #1
0
        public string MMDListToPrint()
        {
            string str = "[";

            if (this.listMultimedia != null)
            {
                foreach (MultimediaDevice MMD in this.listMultimedia)
                {
                    str += "{" + MMD.ToString() + "},";
                }
                str = str.Remove(str.Length - 1);
            }
            return(str + "]");
        }