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 ulong type in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            ulong ul = 1000003;
            Console.WriteLine(ul);

            //ul = -1; // Constant value '-1' cannot be converted to a 'ulong' 

            Console.WriteLine(ul == 99);
            Console.WriteLine(ul == 1000003);
            
            Console.WriteLine(ulong.MaxValue);
            Console.WriteLine(ulong.MinValue);
            
            Console.WriteLine(typeof(ulong));
        }
    }
}

/*
run:
  
1000003
False
True
18446744073709551615
0
System.UInt64

*/

 



answered Jan 13, 2017 by avibootz

Related questions

1 answer 141 views
1 answer 219 views
1 answer 123 views
123 views asked Nov 16, 2021 by avibootz
1 answer 508 views
508 views asked Feb 10, 2021 by avibootz
1 answer 145 views
145 views asked Jan 13, 2017 by avibootz
1 answer 146 views
...