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 is Implicit conversion in C#?
What is the purpose of ienumerable in c#?
Which layer executed first among these Application layer,Buisness layer or Data Base Layer?
What is the default value of date?
Can you instantiate a struct without using a new operator in c#?
What is sqldataadapter in c#?
can you declare an override method to be static if the original method is not static?
What is the difference between directcast and ctype?
What is binding in c#?
Can a method return multiple values in c#?
What is the difference between readonly and constant in c#
What is the use of dll file in c#?