Example #1
0
        private string f_get_Text()
        {
            oMedia mi = this;

            string content = mi.Title;

            if (!string.IsNullOrEmpty(mi.Description))
            {
                content += Environment.NewLine + mi.Description;
            }

            if (mi.Keywords != null && mi.Keywords.Count > 0)
            {
                content += Environment.NewLine + string.Join(" ", mi.Keywords);
            }

            content += Environment.NewLine +
                       //"------------------------------------------------------------------" +
                       Environment.NewLine + Environment.NewLine +
                       mi.SubtileEnglish_Text;

            return(content);
        }
Example #2
0
        public oMedia clone()
        {
            oMedia m = Serializer.DeepClone <oMedia>(this);

            return(m);
        }