How to include c++ header files in c# components?



How to include c++ header files in c# components?..

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

More C Sharp Interview Questions

Can we override interface method?

0 Answers  


List down the access modifiers available in c#?

0 Answers  


There are a class A. Another class B derived from it. Now if I do A a = new B(); and B b = new B(); What will happen in both the statements. And what is the difference between these two statements.

3 Answers   HCL,


Can a struct inherit from an interface in c#?

0 Answers  


In object oriented programming, how would you describe encapsulation in c#?

0 Answers  






Can we change static variable value in c#?

0 Answers  


Which one is trusted and which one is untrusted?

0 Answers  


What are the advantages of properties in c#?

0 Answers  


Expalin the way you implement inheritance by using VB.NET/C#?

0 Answers   Siebel,


What is the difference between var and dynamic types in c# 4.0?

0 Answers  


Explain code compilation in c#.

0 Answers  


Can we create instance of private class in c#?

0 Answers  


Categories