DEV Community

Firdavs Mukhsimov
Firdavs Mukhsimov

Posted on

Value Type va Reference Type

a)Value type va reference type nima?

Reference Type qiymatni o'zi bilan emas, balki qiymatni 
saqlagan joyga ishora (reference) bilan ishlaydi. 

Value Type == oddiy qiymat turlari: int, double, bool, char, byte, va hokazo.

Enter fullscreen mode Exit fullscreen mode

b)Quyidagi kodni tushuntiring:

int a = 5;
int b = a ;
b = 10;
Console. WriteLine(a);
Enter fullscreen mode Exit fullscreen mode

Top comments (0)