C# Create your own IsNumeric method()

Language

As some of you know , in C# , there is no method like "IsNumeric()" . That's why , this method below helps you to prevent entering letters in the textbox or something like that.Hope to use this code in your applications.I used this code in my sms application sending from USB modem string myval= textBox1.Text; int Num; bool isNum = int.TryParse(myval.ToString(), out Num); if (isNum) { } else { textBox1.Text = ""; } if you have any question about code , u are able to reach me.

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

Submitted byUrmia-Mbaon Sat, 09/08/2018 - 21:01

hi download link show some text maybe fix it thank or send me that source

Add new comment