Пример (со стр. 466):
Код: Выделить всё
class AsyncForm : Form
{
Label label;
Button button;
public AsyncForm ( )
{
label = new Label { Location = new Point(10, 20),
Text = "Length" };
button = new Button { Location = new Point(10, 50),
Text = "Click" };
button.Click += DisplayWebSiteLength;
Autosize = true;
Controls.Add(label);
Controls.Add(button);
}
// ...
}
Мне интересно, потому что я хочу убедиться, что весь код, который я пишу, сертифицирован для Skeet?
Подробнее здесь: https://stackoverflow.com/questions/346 ... harp-class
Мобильная версия