Run Time Execution Environment,
- Process
- CLR
- Application Domain
- Assembly
- Types
When executing application does every application has CLR for that process?
if so how much memory allocated for CLR(is it 2GB ?). I know that each application require 2GB. So Totally 4GB is required. Is it correct?
What happens when I execute 2 different or same application simultaneously. If both belong to same version of CLR. Does 2 CLR loadeded and giving service to 2 application.
What happens for the above if the application belongs to different verion of CLR.
Inheritance in DotNet(C#)
I have two interface A,B with same method name Add(same signature).
I am inheriting these two class in another class called C.
I want to implement two Add corresponding to interface A,B.
In Class Called Client I am instantiating the C class. Now I want to call add corresponding to A and Add corresponding to B. I have written the below.
I want to know is it correct or not. Please tell how to do this.
Interface A{
int Add(a,b){}
}
Interface B{
int Add(a,b){}
}
class C : A,B
{
int A.Add(a,b)
{return a+b;}
int B.Add(a,b)
{return a+b;}
class Client
{
static main()
C cobject = new C();
c.a.add();
c.b.add();
}
}
SQL Server
3) In SQL Server Why SQL Server Authentication is Untrusted and Windows Authentication trusted.
Dataset
4)What happen when two user update the same dataset
5)What is the difference between Dataview and Datatable in ADO.Net
I know that dataview can be filtered and sorted. Is there any reason.
I hope datatable can�t be filtered or sorted.
Tell me the exact diffrence.
[STAThread]
What is meaning of above attribute. Is it for to mention single threaded application
Application.Run()
Why we use application.run() instead of directly instantiating and showing the form.
UnMannaged Class
5) If I have unmannaged code whether I should write Finalization Method for that. Or overriding the Dipose Mehod is sufficient. In Dispose Whether I should call SuppressFinalization.
If there is no Dispose wether GC will call the Finalize method implemented in that class.
Whether Unmannage code Should inherit any Interface?
Webservices
6) I have written asmx and aspx.
How to get the WSDL file. Tell me without using Dotnet designing Tool.
Remoting 7) I have 10 class which I want to deploy into server. To make this class as remote objet I have inherited from Marshellbyref.
- About Remote Class & Server Class
i)Whether I have to create 10 different library with class name and library name is same.?
In This case can I have Single Server Program in Which can I bind 10 different channel and remoteconfiguration for each channel with individual indentity.
Or We have to write 10 different server program for each remote class?
ii)Can I have single library in which I can place all the 10 remote class. and writing single server program with 10 channel and with individual indentity.
Thank You
With Regards
L.Palanivelrajan