SByte.Parse(String,IFormatProvider) converts string to its 8-bit signed integer : sbyte « Data Types « C# / C Sharp






SByte.Parse(String,IFormatProvider) converts string to its 8-bit signed integer

 


using System;
using System.Globalization;

public class Example
{
   public static void Main()
   {
      NumberFormatInfo nf = new NumberFormatInfo();
      nf.NegativeSign = "~"; 

      string[] values = { "-103", "+12", "~16", "  1", "~255" };
      IFormatProvider[] providers = { nf, CultureInfo.InvariantCulture };

      foreach (IFormatProvider provider in providers)
      {
         Console.WriteLine("Conversions using {0}:", ((object) provider).GetType().Name);
         foreach (string value in values)
         {
            try {
               Console.WriteLine("   Converted '{0}' to {1}.", value, SByte.Parse(value, provider));
            }                     
            catch (FormatException) {
               Console.WriteLine("   Unable to parse '{0}'.", value);   
            }
            catch (OverflowException) {
               Console.WriteLine("   '{0}' is out of range of the SByte type.", value);         
            }
         }
      }      
   }
}

   
  








Related examples in the same category

1.SByte.MaxValue Represents the largest value of SByte.
2.SByte.MinValue Represents the smallest value of SByte.
3.SByte.Parse converts string to its 8-bit signed integer
4.SByte.Parse(String, NumberStyles) converts string to its 8-bit signed integer
5.Parse value with trailing sign
6.SByte.Parse(String, NumberStyles, IFormatProvider) converts string to its 8-bit signed integer.
7.SByte.ToString(IFormatProvider) converts numeric value to string with culture-specific format
8.SByte.ToString(String) converts numeric value to string using the specified format.
9.SByte.ToString(String, IFormatProvider) converts numeric value to string using the specified format
10.SByte.ToString converts the numeric value to string
11.SByte.TryParse(String, NumberStyles, IFormatProvider, SByte) tries to convert string to SByte
12.SByte.TryParse(String, SByte) tries to convert string to its SByte