Integ

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:04 AM on 2/20/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

C#

An object-oriented programming language developed at Microsoft that supports data encapsulation, inheritance, polymorphism, and method overriding.

2
New cards

Common Language Runtime (CLR)

A runtime environment of the .NET framework that manages the execution of .NET code and enables debugging, exception handling, and program portability.

3
New cards

Garbage Collection

An automatic memory management feature in C# that reclaims memory occupied by objects that are no longer in use.

4
New cards

Microsoft Intermediate Language (MSIL)

The intermediate language into which C# source code is compiled before being converted into native code.

5
New cards

ASP.NET

A unified web development model under the .NET framework for building enterprise-class web applications.

6
New cards

ADO.NET

A set of classes that allows access to relational databases and XML data sources.

7
New cards

Assembly

A collection of types and resources built to work together, functioning as a logical unit of functionality in .NET applications.

8
New cards

Global Assembly Cache (GAC)

A machine-wide code cache that stores assemblies specifically designated to be shared by several applications.

9
New cards

Shared Assembly

An assembly that can be used by multiple applications and must be registered in the GAC.

10
New cards

Private Assembly

An assembly that is used by a single application and does not need to be registered in the GAC.

11
New cards

Manifest

Metadata in an assembly that stores identification information, public types, and a list of other assemblies used.

12
New cards

Strong Name

A unique name for a shared assembly that includes its identity and version information.

13
New cards

Interoperability

The ability of different programming languages supported by .NET to work together and exchange data.

14
New cards

Language Integrated Query (LINQ)

A feature in C# that allows for writing database queries directly in C#.

15
New cards

Lambda Expressions

An anonymous function used in LINQ expressions for concise and efficient coding.

16
New cards

Component Object Model (COM)

A Microsoft technology that allows for inter-process communication and dynamic object creation.

17
New cards

Versioning

The process of assigning version numbers to assemblies to manage backward compatibility.

18
New cards

Base Class Library

A library containing classes and interfaces used for building applications in .NET.

19
New cards

Security in .NET

The mechanism that ensures only authorized users can call methods of specific classes.