Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


pointers are support in C#? if yes then how to use it?

Answers were Sorted based on User's Feedback



pointers are support in C#? if yes then how to use it?..

Answer / supratim sengupta

pointers in C# are considered as unsafe code. We can use
pointers in the same way as we use in C++ or VC++ but we
need to build it with a /unsafe option

Is This Answer Correct ?    9 Yes 1 No

pointers are support in C#? if yes then how to use it?..

Answer / varsha vilas kalebag

yes

Is This Answer Correct ?    7 Yes 1 No

pointers are support in C#? if yes then how to use it?..

Answer / rajavel

ya... pointer can be used in c# for value and array
types...and in inside class too (but class-> reference type
so not applicable)in the class members which are not ref
type../ using fixed keyword ... but it is unsafe....

Is This Answer Correct ?    6 Yes 0 No

pointers are support in C#? if yes then how to use it?..

Answer / varsha vilas kalebag

yes, pointer is nothing but value is saved in another
memory address

Is This Answer Correct ?    4 Yes 0 No

pointers are support in C#? if yes then how to use it?..

Answer / preeti

Yes pointers are supported in c#.
Def:- pointers point to other veriable's memory address.
Uses:-
i)It uses in call by reference concept.
ii)Number of pointers can point to same memory address.
iii)using pointer there is working on exact memory location
instead of other veriable.

Is This Answer Correct ?    3 Yes 0 No

pointers are support in C#? if yes then how to use it?..

Answer / 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

pointers are support in C#? if yes then how to use it?..

Answer / 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

pointers are support in C#? if yes then how to use it?..

Answer / rajiv grover

NO
pointer is not used in c#

Is This Answer Correct ?    2 Yes 9 No

Post New Answer

More OOPS Interview Questions

What is polymorphism? Explain with an example.

48 Answers  


What is coupling in oop?

0 Answers  


What is inheritance write a program to show use of inheritance?

0 Answers  


What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass

6 Answers   Wipro,


What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile

4 Answers  


What is new keyword in oops?

0 Answers  


What Is a Polymorphism? How many types of polymorphism and whats that use in application?

2 Answers  


assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

0 Answers  


What is polymorphism programming?

0 Answers  


i had specified the access specifier for abstarct class member like (pure virtual function) as private.But it can be accessed by the derived class.How the private member of one class is accessed by other class.if any body face this problem and found the solution plz reply to me.

1 Answers   Syntel,


What is inheritance in oop?

0 Answers  


What is the outcome of the line of code "cout<<abs(- 16.5);"? 1) 16 2) 17 3) 16.5

16 Answers   TCS,


Categories