Languages
[Edit]
EN

C#/.NET - convert string to short

3 points
Created by:
Kelly
394

In C#/.NET string can be parsed to short in few ways.

1. short.Parse method example

using System;
					
public class Program
{
	public static void Main()
	{
		string text = "123";
		short value = short.Parse(text);
		
		Console.WriteLine(value);
	}
}

Output:

123

2. short.TryParse method example

using System;
					
public class Program
{
	public static void Main()
	{
		string text = "123";
		short value;

		if (short.TryParse(text, out value))
			Console.WriteLine(value);
	}
}

Output:

123

3. Convert.ToInt16 method example

using System;
					
public class Program
{
	public static void Main()
	{
		string text = "123";
		short value = Convert.ToInt16(text);
		
		Console.WriteLine(value);
	}
}

Output:

123

4. TypeConverter.ConvertFrom method example

using System;
using System.ComponentModel;

public class Program
{
	public static void Main()
	{
		TypeConverter converter = TypeDescriptor.GetConverter(typeof(short));

		string text = "123";
		short value = (short)converter.ConvertFrom(text);

		Console.WriteLine(value);
	}
}

Output:

123

5. Custom conversion example

Check this article

6. Notes

The following methods short.Parse, short.TryParse, Convert.ToInt16 and TypeConverter.ConvertFrom throw System.FormatException.

7. References

  1. short.Parse(String) - Microsoft Docs
  2. short.TryParse(String, Int16) - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join