How to use the ushort type in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            ushort us = 19; 

            Console.WriteLine(us);

            Console.WriteLine(us == 2);
            Console.WriteLine(us == 19);

            Console.WriteLine(sizeof(ushort));
            Console.WriteLine(default(ushort));

            Console.WriteLine(us.GetType());
            Console.WriteLine(us.GetTypeCode());

            Console.WriteLine(ushort.MinValue);
            Console.WriteLine(ushort.MaxValue);
        }
    }
}

/*
run:
   
19
False
True
2
0
System.UInt16
UInt16
0
65535

*/

 



answered Jan 16, 2017 by avibootz

Related questions

1 answer 155 views
1 answer 212 views
1 answer 122 views
122 views asked Nov 16, 2021 by avibootz
1 answer 359 views
359 views asked Feb 10, 2021 by avibootz
1 answer 181 views
181 views asked Feb 10, 2021 by avibootz
1 answer 132 views
132 views asked Nov 15, 2021 by avibootz
...