pointers are support in C#? if yes then how to use it?
Answer Posted / kiran
yes we can use pointers same as in c++ and c but pointer concept is not supported in c# but we can implement using interface concept
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Why is static class not inherited?
What is overriding in oop?
Will I be able to get a picture in D drive to the c++ program? If so, help me out?
How to hide the base class functionality in Inheritance?
What is polymorphism explain its types?
What is an interface in oop?
Write a c++ program to display pass and fail for three student using static member function
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
What is oops and its features?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
What do you mean by variable?
Which language is not a true object oriented programming language?
write a programe to calculate the simple intrest and compund intrest using by function overlading
Can abstract class have normal methods?
Can we override main method?