Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to find the size of a variable without using sizeof in C#?
To get the size of a variable, sizeof is used.
int x; x = sizeof(int);
To get the size of a variable, without using the sizeof, try the following code −
// without using sizeof byte[] dataBytes = BitConverter.GetBytes(x); int d = dataBytes.Length;
Here is the complete code.
Example
using System;
class Demo {
public static void Main() {
int x;
// using sizeof
x = sizeof(int);
Console.WriteLine(x);
// without using sizeof
byte[] dataBytes = BitConverter.GetBytes(x);
int d = dataBytes.Length;
Console.WriteLine(d);
}
}
Output
4 4
Advertisements