Belhard.Training.Book.Book C# (CSharp) Метод

Book() публичный Метод

public Book ( string title, int pageCount ) : System
title string
pageCount int
Результат System
        public Book(string title, int pageCount)
        {
            _eventHandlerList = new EventHandlerList();
            Title = title;
            PageCount = pageCount;
        }