NuGet.PackageBuilder.ParseTags C# (CSharp) Method

ParseTags() private static method

Tags come in this format. tag1 tag2 tag3 etc..
private static ParseTags ( string tags ) : IEnumerable
tags string
return IEnumerable
        private static IEnumerable<string> ParseTags(string tags)
        {
            Debug.Assert(tags != null);
            return from tag in tags.Split(new[] {' '}, StringSplitOptions.RemoveEmptyEntries)
                   select tag.Trim();
        }