How to parse short value from a string in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string str = "893";

            short s = short.Parse(str);

            Console.WriteLine(s);
        }
    }
}

/*
run:
   
893

*/

 



answered Jan 17, 2017 by avibootz

Related questions

1 answer 208 views
1 answer 215 views
1 answer 185 views
185 views asked Jan 18, 2017 by avibootz
2 answers 242 views
4 answers 278 views
278 views asked Jan 18, 2017 by avibootz
1 answer 180 views
...