Try this:
int x = Int32.Parse(TextBoxD1.Text);
or better yet:
int x = 0; Int32.TryParse(TextBoxD1.Text, out x);
Also, since Int32.TryParse returns a bool you can use its return value to make decisions about the results of the parsing attempt:
int x = 0;
if (Int32.TryParse(TextBoxD1.Text, out x))
{
// you know that the parsing attempt
// was successful
}
If you are curious, the difference between Parse and TryParse is best summed up like this:
The TryParse method is like the Parse method, except the TryParse method does not throw an exception if the conversion fails. It eliminates the need to use exception handling to test for a FormatException in the event that s is invalid and cannot be successfully parsed. – MSDN
Related Posts:
- How to convert UTF-8 byte[] to string
- Convert int to string?
- Substring index and length must refer to a location within the string
- .NET String.Format() to add commas in thousands place for a number
- What is a quick way to force CRLF in C# / .NET?
- Convert double to float by cast or Convert.ToSingle()?
- Unrecognized escape sequence for path string containing backslashes
- How do I convert a String to an int in Java?
- .Net 4.8 Support for Windows 10 ends in 26 days?
- What is a NullReferenceException, and how do I fix it?
- Easiest way to convert int to string in C++
- How do I get a random YouTube video with the YouTube API?
- An existing connection was forcibly closed by the remote host
- What is a NullReferenceException, and how do I fix it?
- I am getting Failed to load resource: net::ERR_BLOCKED_BY_CLIENT with Google chrome
- IOException: The process cannot access the file ‘file path’ because it is being used by another process
- No connection could be made because the target machine actively refused it?
- Could not load file or assembly or one of its dependencies
- What does a lock statement do under the hood?
- Error : Could not load file or assembly or one of it’s dependencies
- Converting string to byte array in C#
- Could not load file or assembly or one of its dependencies
- Priority queue in .Net
- What is the difference between int, Int16, Int32 and Int64?
- How can I add ” character to a multi line string declaration in C#?
- What is the purpose of nameof?
- How to open .dll files to see what is written inside?
- Windows .NET API / Windows 7 / Bluetooth communication with Intel Curie Arduino / Genuino 101
- Error 1053 the service did not respond to the start or control request in a timely fashion
- Get current folder path
- foreach vs someList.ForEach(){}
- System.web.mvc missing
- Nullable object must have a value?
- Access to the path is denied
- What does mscorlib stand for?
- Cannot implicitly convert type ‘customtype’ to ‘othercustomtype’
- Extension methods must be defined in a non-generic static class
- Metadata file ‘.dll’ could not be found
- C# List
to string with delimiter - WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for jquery
- Convert a list of strings to a single string
- “Error while trying to run project: Unable to start program”. Can run program only once. Then VS needs restart
- Add new item in existing array in c#.net
- How to resolve this System.IO.FileNotFoundException
- What is clr.dll on .Net framework and what does it do?
- what is this oleaut32.dll?
- Associating enums with strings in C#
- How do I declare a DefaultValue attribute whose value is an array of strings?
- How to resolve this System.IO.FileNotFoundException
- HttpWebRequest-The remote server returned an error: (400) Bad Request
- Extension methods must be defined in a non-generic static class
- Convert char to int in C#
- C#: how to get first char of a string?
- How to use the “Using” statement in ASP.net razor webpages?
- How can I get the application’s path in a .NET console application?
- Reading settings from app.config or web.config in .NET
- How do I create a Shared Code project (.shproj)
- How to initialize a list of strings (List
) with many string values - There is no argument given that corresponds to the required formal parameter – .NET Error
- What does {0} mean when found in a string in C#?
- How do I remedy “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?
- Invalid URI: The format of the URI could not be determined
- Multiple file-extensions searchPattern for System.IO.Directory.GetFiles
- C# – Illegal characters in path
- Could not establish trust relationship for SSL/TLS secure channel — SOAP
- Getting The ASCII Value of a character in a C# string
- Unable to read data from the transport connection : An existing connection was forcibly closed by the remote host
- How to make an HTTP POST web request
- How to add comments into a Xaml file in WPF?
- Why did I get the compile error “Use of unassigned local variable”?
- Reading CSV file and storing values into an array
- The remote server returned an error: (407) Proxy Authentication Required
- Merge two (or more) lists into one, in C# .NET
- How can I fix the error : “Unreachable Code Detected”
- How to open a new form from another form
- C# – How to convert string to char?
- Escape double quotes in a string
- Get int value from enum in C#
- What’s the @ in front of a string in C#?
- How do you sort a dictionary by value?
- EntityType has no key defined error
- HTML.ActionLink method
- Deep cloning objects
- Regular expression “^[a-zA-Z]” or “[^a-zA-Z]”
- How do I restart my C# WinForm Application?
- .NET graph library around?
- How to split() a delimited string to a List
- Creating a comma separated list from IList
or IEnumerable - Remove element of a regular array
- Best way to reverse a string
- How can I cast int to enum?
- An object reference is required to access a non-static member
- Task vs Thread differences
- Merging two arrays in .NET
- Best way to repeat a character in C#
- How can I know if a process is running?
- String was not recognized as a valid DateTime ” format dd/MM/yyyy”
- Fastest way to remove first char in a String
- Checking if a string array contains a value, and if so, getting its position
- XmlSerializer – There was an error reflecting type