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 |
What?s the difference between <c> and <code> XML documentation tag?
What are primitive types in c#?
What do you mean by serialization in .NET?
What is the difference between malloc () and new?
What is difference between array and list in c#?
Can you have an array of arrays?
From which base class do all Web Forms inherit from?
How to transpose rows into columns and columns into rows in a multi-dimensional array?
Can a child class call the constructor of a base class?
Which attribute is used in order that the method can be used as webservice?
What are actions in c#?
Can a structure inherit a class.