What is the use of sizeof Operator in C#?


The sizeof() datatype returns the size of a data type. Let’s say you need to find the size of int datatype −

sizeof(int);

For double datatype −

sizeof(double);

Let us see the complete example to find the size of various datatypes −

Example

 Live Demo

using System;

namespace Demo {

   class Program {

      static void Main(string[] args) {

         Console.WriteLine("The size of long is {0}", sizeof(long));
         Console.WriteLine("The size of double is {0}", sizeof(double));

         Console.ReadLine();
      }
   }
}

Output

The size of long is 8
The size of double is 8

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 20-Jun-2020

328 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements