0
which feature overcome the pointers concept in c#
pointer concept is not supported in c#
4 odpowiedzi
+ 2
pointer are only use in reference type
+ 2
Vikram Thakur
C# is an OOP language.
All of the C# code must exist within a class.
C# Classes will automatally reserve memory addresses.
Meaning it already uses pointers without you declaring an object as a pointer.
+ 2
basically there two types of datatype classification
1:value type // struct int double etc
2: reference type // class string
regex etc
pointer are just address that are stored on the heap memory connecting it to the stack memory where the main value is stored
+ 1
so there that everything I know on pointers in c#