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

Which are the access modifiers available in c#?

0 Answers  


Can you instantiate a struct without using a new operator in c#?

0 Answers  


Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.

1 Answers  


what is reference parameter? what is out parameters? what is difference these two?

9 Answers   Bally Technologies, SPIC, Wipro,


Explain About web methods and its various attributes

0 Answers   Digital GlobalSoft,


How many bytes is a char c#?

0 Answers  


What is namespace in oop?

0 Answers  


Why singleton pattern is used in c#?

0 Answers  


What is hashtable in c# net with example?

0 Answers  


Explain the difference between object type and dynamic type variables in c#?

0 Answers  


Can a static class contain non static members?

0 Answers  


Explain nullable types in c#?

0 Answers  


Categories