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

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

private static GetComments ( ) : void
Результат void
        private static void GetComments()
        {
            CommentsQuery p = new CommentsQuery { Site = NetworkSiteEnum.StackOverflow };
            IBridgeResponseCollection<Comment> comments = client.GetComments(p);

            Console.WriteLine(comments.First().CommentId);
        }