У нас вы можете посмотреть бесплатно Part 5 Program to check if the user input is a string or an integer или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Link for all dot net and sql server video tutorial playlists / kudvenkat Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspo... Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help. / @aarvikitchen5572 This is straight forward in C#. If you have used TryParse() function then you already know the answer. using System; namespace Demo { class Program { static void Main() { Console.WriteLine("Please type your input and press Enter key"); string strInput = Console.ReadLine(); int result = 0; if (int.TryParse(strInput, out result)) { Console.WriteLine("Your input {0} is a number", result); } else { Console.WriteLine("Your input {0} is NOT a number", strInput); } } } }