⟩ What should one do to make class serializable?
To make a class serializable is to mark it with the Serializable attribute as follows.
[Serializable]
public class MyObject {
public int n1 = 0;
public int n2 = 0;
public String str = null;
}
To make a class serializable is to mark it with the Serializable attribute as follows.
[Serializable]
public class MyObject {
public int n1 = 0;
public int n2 = 0;
public String str = null;
}
Explain About .NET Remoting and types of remoting?
What are static assemblies and dynamic assemlies.Differences between them?
What is a process?
What are various types of assemblies?
What is strong name and what is the purpose of strong name?
What is an assembly and what does manifest consists?
What do you mean by passport authentication and windows authentication?
What is boxing and unboxing?
Explain Threading Types?
What is unmanaged code and will CLR handle this kind of code or not?