예제 #1
0
        private string GetContentText(string file, string[] tags)
        {
            var sb = new StringBuilder();

            sb.AppendLine(file.Remove(0, 3).Replace("\\", " ").Replace(".", " "));
            sb.AppendLine(string.Join(" ", tags));

            return(ContentHelpers.CleanContent(sb));
        }