|
|
От: |
anton_t
|
|
| Дата: | 26.02.08 17:02 | ||
| Оценка: | +1 | ||
С>void SomeMethod(out string errorMessage)
С>{
С> try
С> {
С> // some code
С> }
С> catch (Exception exc)
С> {
С> errorMessage = "Some error occured";
С> }
С>}
С>