|
|
От: | Аноним | |
| Дата: | 09.11.06 10:47 | ||
| Оценка: | |||
S>delegate void ShowInformationDelegate(object o,System.EventArgs e);
S>public void ShowInformationOnTheScreen() { }
S>public void CalledFromEvent
S>{
S> ShowInformationDelegate showInformationDelegate = new ShowInformationDelegate(ShowInformationOnTheScreen);
S>}
S>