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 |
Can we override interface method?
List down the access modifiers available in c#?
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.
Can a struct inherit from an interface in c#?
In object oriented programming, how would you describe encapsulation in c#?
Can we change static variable value in c#?
Which one is trusted and which one is untrusted?
What are the advantages of properties in c#?
Expalin the way you implement inheritance by using VB.NET/C#?
What is the difference between var and dynamic types in c# 4.0?
Explain code compilation in c#.
Can we create instance of private class in c#?