ILSourceParser 1.1.2
See the version list below for details.
dotnet add package ILSourceParser --version 1.1.2
NuGet\Install-Package ILSourceParser -Version 1.1.2
<PackageReference Include="ILSourceParser" Version="1.1.2" />
paket add ILSourceParser --version 1.1.2
#r "nuget: ILSourceParser, 1.1.2"
// Install ILSourceParser as a Cake Addin #addin nuget:?package=ILSourceParser&version=1.1.2 // Install ILSourceParser as a Cake Tool #tool nuget:?package=ILSourceParser&version=1.1.2
ILSourceParser
This library for .NET provides functionality to parse IL source code. If you're not aware, Microsoft Intermediate Language (IL or CIL, formerly known as MSIL) is what the .NET application typically consists of. C#, Visual Basic, F#, and other well-known official .NET languages compile to IL bytecode. However, IL actually has its syntax as well. ILSourceParser parses the IL syntax into syntax nodes, making it easier to analyze IL.
This library does not rely on any existing project and is not a port from another language, so there could be some issues with this library. If you encounter one, please create a new issue post about it!
The known issue is that ILSourceParser might not be the fastest thing in the world, because it took nearly 1 second to analyze a 200-line of code IL file. Maybe it just needs some additional JIT warming, although there could be a different reason - parsing IL is generally harder than parsing C#, mostly because IL has almost 300 instructions, and we have to do over 300 checks when parsing method body to parse one instruction.
Example
var syntaxTree = ILSyntaxTree.ParseText(@".assembly MyAssembly { }");
var root = syntaxTree.GetRoot();
foreach (SyntaxNode node in root.DescendantNodes)
{
// do something with node
}
A more complex example here:
using ILSourceParser;
using ILSourceParser.Syntax;
using ILSourceParser.Syntax.Instructions;
using Sprache;
string input = @".assembly MyAssembly
{
.ver 1:2:3:4
}
.assembly extern System.Runtime
{
}
.assembly extern System.Console
{
}
// My Cool Application !
.imagebase 0x00400000
.line 123
.class public sequential auto ansi beforefieldinit MyValueType extends [System.Runtime]System.ValueType
{
.field private static initonly string s_myString
.method public static hidebysig void .cctor() cil managed
{
ldstr ""Hello, World!""
stsfld string MyValueType::s_myString
}
.method public static void PrintText() cil managed
{
.maxstack 8
ldsfld string MyValueType::s_myString
call void [System.Console]System.Console::WriteLine(string)
ret
}
}";
var syntaxRoot = ILSyntaxTree.ParseText(input).GetRoot();
foreach (var descendant in syntaxRoot.DescendantNodes)
{
switch (descendant)
{
case AssemblyDeclarationSyntax asm:
Console.WriteLine($"Assembly {asm.AssemblyName}, is external: {asm.IsExtern}");
break;
case BaseCommentSyntax comment:
if (comment is InlineCommentSyntax inline)
{
Console.WriteLine($"Inline comment, text: {inline.CommentText}");
}
else if (comment is MultilineCommentSyntax multiline)
{
Console.WriteLine($"Multiline comment, text: {multiline.CommentText}");
}
break;
case ImageBaseDirectiveSyntax imageBase:
Console.WriteLine($"Image base {imageBase.ImageBase}");
break;
case LineDirectiveSyntax line:
Console.WriteLine($"Line {line.Line}");
break;
case ClassDeclarationSyntax @class:
string flags = string.Join(", ", @class.Flags);
Console.WriteLine($"Class named {@class.Name}; flags: {flags}");
break;
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Sprache (>= 2.3.1)
- System.Text.RegularExpressions (>= 4.3.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added XML documentation