BetterCms.Module.Blog.Services.DefaultBlogMLService.BlogMlCategoryCollectionToEnumerable C# (CSharp) Method

BlogMlCategoryCollectionToEnumerable() private method

private BlogMlCategoryCollectionToEnumerable ( BlogMLPost collection ) : IEnumerable
collection BlogML.Xml.BlogMLPost
return IEnumerable
        private IEnumerable<BlogMLCategoryReference> BlogMlCategoryCollectionToEnumerable(BlogMLPost.CategoryReferenceCollection collection)
        {
            for (int i = 0; i < collection.Count; i++)
            {
                yield return collection[i];
            }
        }