pointers are support in C#? if yes then how to use it?
Answer Posted / baru
yes,pointers can support in c#.Basically variables can hold and work on values of data types but pointers can work on addresses of those variables so memory space utilization will be efficient as these pointers works on available memory spaces
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is overloading and its types?
any one please tell me the purpose of operator overloading
How do you achieve runtime polymorphism?
What is polymorphism and example?
What is the significance of classes in oop?
What is the problem with multiple inheritance?
Why we use classes in oop?
Explain virtual inheritance?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What is polymorphism give a real life example?
Can we create object of interface?
What are the important components of cohesion?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
What is data binding in oops?