How to include c++ header files in c# components?
Answer Posted / rizwan
they are called namespaces in C#.
they are included as
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
What is eager and lazy loading in c#?
What are native methods?
Can abstract class have constructor?
Explain the process of abstraction with an example?
What is difference between dll and exe in c#?
What is generic and non generic collections in c#?
2. What happened when BO object has been called?
What is reflection in c#?
What is difference between write and writeline?
What is Global Assembly Cache (GAC) and what is the purpose of it? (How to make an assembly to public? Steps) How more than one version of an assembly can keep in same place?
Can we set image Source dynamically using C# in WPF application?
Is namespace necessary in c#?
What is difference between hashtable and dictionary in c#?
How big is a 64 bit integer?
if a base class has a number of overloaded constructors, and an inheriting class has a number of overloaded constructors; can you enforce a call from an inherited constructor to a specific base constructor?