Difference between C++ and C#.net
Answer Posted / basveshwar
C++ uses the "include" header files where as c# uses the
namespaces,
C++ runs for assmebly languages
where as c# runs in .net framework,
Pointers can be used anywhere in c++
but in c# pointers are used only in unsafe mode.
C++ does not support the multiple inheritance,c# support
mulutiple inheritance.
Is This Answer Correct ? | 12 Yes | 41 No |
Post New Answer View All Answers
what is main function of alternate teamplate of datalist?
Do we get an error while executing the “finally” block in c#?
Why should I use interface in c#?
Suppose two interfaces have same method, so how will you implement these methods in derive class?
How Global.asax is used ?
Why to use lock statement in c#?
What is the difference between package and interface?
What is function and method in c#?
What does mean before a string in c#?
Explain About stateless and state full web service
Explain how many types of exception handlers are there in .net?
Explain the difference between arraylist and array and in c#?
List some Advantages of switch-case over if else?
In a C# class we have a SortedList member m_addinProjects
we want to provide an iterator to allow the consumer of
this class access to the items in the collection. Please
provide an iterator method for the AnalyzeAddinsDLL class
below and an example of how it would be used.
namespace AnalyzeAddinsDLL
{
public class AllAddInProjects
{
private SortedList
Are multiple data types stored in System.Array?