CLR (Common Language Runtime): It is a common managed environment where all the
.net programs run.........
Assembly Manifest is a file that contains data that describes how the elements
present inside an assembly are connected to each other.........
Any code written in any .NET complaint languages when compiled, converts into
MSIL (Microsoft Intermediate Language) code........
.NET’s Base class library exists in order to encapsulate huge number of common
functions and makes them easily accessible to the developer.........
Stores the data, The value of value types is stored on the managed
stack..........
Import statement: creates a property on the global object with the name supplied
as namespace........
It is reference type, Null value can be assigned to a variable in a
class........
The garbage collector assumes that all objects in the managed heap are
garbage.........
The .Net runtime knows about all the references between the objects.........
MainMenu component is a component that allows the display of Menus at runtime on
a form.........
ContextMenu component provides the users with the ability to access some very
frequently used commands.........
A delegate declares a ref type that references a named of anonymous method.
Delegates are secure and type-safe.........
Declare Events: “Event” keyword is used to declare an event.........
Break mode is the state of an application when the execution gets paused and
allows........
Steps to step through the code in .NET:........
Breakpoints: displays a list of all the breakpoints and where they are.........
Both are used to help programmers find errors, occurring events and flow of
code.........
Trace switches allow us to filter, enable/disable the outputs through Trace. We
can configure them through the config file. 3 types of trace switches:........
switches are configured using the .config file........
The CLR uses a technique generally referred to as a two-pass exception review
process.........
User authored controls are which not part of the .net framework library. It
includes both custom controls and user controls.........
Steps to create inherited Control:-........
Steps to create a User control:........
Steps to create a custom control:........
.Net framework has two components:........
Managed execution process is a process where CLR executes the managed code. The
steps involved in this process are:........
Assembly is a compiled output of program which are used for easy deployment of
an application.........
Assemblies are main building blocks. An assembly maybe defined as a unit of
deployment.........
Windows services are a way to create continuously running applications in the
background.........
a. Running services in background like antivirus
b. Disk or memory access monitoring
c. To implement security systems for an application..............
a. Create a window service project.
b. Service file appears with a constructor and OnStart and OnStop
methods.................
|