BridgeStack.ConsoleApplication.Program.GetTags C# (CSharp) Метод

GetTags() приватный статический Метод

private static GetTags ( ) : void
Результат void
        private static void GetTags()
        {
            TagsQuery p = new TagsQuery { Site = NetworkSiteEnum.StackOverflow };
            IBridgeResponseCollection<Tag> tags = client.GetTags(p);

            Console.WriteLine(tags.First().Name);
        }