From d228cc1dfb21c650becf38fb7842c8c17ec5d381 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Thu, 20 Jan 2022 23:16:15 +0100 Subject: [PATCH] Remove todo annotations --- DotNet/C#/C#.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index 36bf594..b6ef655 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -1,17 +1,5 @@ # `C#` - - **.NET** Core is a development platform that includes a **Common Language Runtime** (**CoreCLR**), which manages the execution of code, and a **Base Class Library** (**BCL**), which provides a rich library of classes to build applications from. The C# compiler (named **Roslyn**) used by the dotnet CLI tool converts C# source code into **intermediate language** (**IL**) code and stores the IL in an _assembly_ (a DLL or EXE file). @@ -2404,8 +2392,6 @@ The `GetExecutingAssembly` method returns the assembly that contains the method To inspect an assembly info use the `ReflectionOnlyLoadFrom` (or `ReflectionOnlyLoad`) method of the `Assembly` class. This loads the assembly in such a way that it's possible to inspect its type information, but no code in the assembly will execute, nor will any assemblies it depends on be loaded automatically. - - --- ## Attributes