A complete reference about Interview Question all Freshers and Experience students.Microsoft .NET is a software development platform based on virtual machine based architecture. Dot net is designed from the scratch to support programming language independent application development. The entire .NET programs are independent of any particular operating system and physical hardware machine.
Boxing and Un-Boxing:
Implicit(automatic) conversion of value type to reference type is known as Boxing And Explicit (manual) conversion of Reference type to value type is said to be Un-boxing. (conversion of Integer variable to object type)
Static Variable and Its Life-Time
VB.NET: Public Shared VAR As Type.
C#: public static Type VAR;
Life time is till the class is in memory.
C#: public static Type VAR;
Life time is till the class is in memory.
What is a Delegate?
A strongly typed function pointer. A delegate object encapsulates a reference to a method. When actual function needs to be called will be decided at run-time.
Identifiers/Access Specifies and scope
VB.NET: Private, Protected, Friend, Protected Friend, Public.
C#: private, protected, internal, protected internal, public.
C#: private, protected, internal, protected internal, public.
Subscribe to:
Posts (Atom)