Код: Выделить всё
short? var = (textbox.Text.Length > 0) ? short.Parse(textbox.Text) : null;
Подробнее здесь: https://stackoverflow.com/questions/793 ... in-c-sharp
Код: Выделить всё
short? var = (textbox.Text.Length > 0) ? short.Parse(textbox.Text) : null;