Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,955 questions

51,897 answers

573 users

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 136 views
1 answer 188 views
1 answer 108 views
108 views asked Nov 16, 2021 by avibootz
1 answer 337 views
337 views asked Feb 10, 2021 by avibootz
1 answer 157 views
157 views asked Feb 10, 2021 by avibootz
1 answer 112 views
112 views asked Nov 15, 2021 by avibootz
...