AlphaOmega.ByteCodeReader 1.0.8415.27098

dotnet add package AlphaOmega.ByteCodeReader --version 1.0.8415.27098                
NuGet\Install-Package AlphaOmega.ByteCodeReader -Version 1.0.8415.27098                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AlphaOmega.ByteCodeReader" Version="1.0.8415.27098" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AlphaOmega.ByteCodeReader --version 1.0.8415.27098                
#r "nuget: AlphaOmega.ByteCodeReader, 1.0.8415.27098"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AlphaOmega.ByteCodeReader as a Cake Addin
#addin nuget:?package=AlphaOmega.ByteCodeReader&version=1.0.8415.27098

// Install AlphaOmega.ByteCodeReader as a Cake Tool
#tool nuget:?package=AlphaOmega.ByteCodeReader&version=1.0.8415.27098                

Byte Code reader

Java Virtual Machine bytecode reader

Usage:

using(ClassFile cls = new ClassFile(StreamLoader.FromFile(@"C:\Test\CString.class")))
{
    if(cls.IsValid)
    {
        foreach(var item in info.fields)
            //...
        foreach(var item in info.methods)
            //...
        foreach(var item in info.interfaces)
            //...

        //...
    }
}

Supported structures:

  • Header — Each class file contains the definition of a single class or interface.
  • constant_pool — The constant_pool is a table of structures (§4.4) representing various string constants, class and interface names, field names, and other constants that are referred to within the ClassFile structure and its substructures.
  • this_class — The value of the this_class item must be a valid index into the constant_pool table.
  • super_class — For a class, the value of the super_class item either must be zero or must be a valid index into the constant_pool table.
  • interfaces — Each value in the interfaces array must be a valid index into the constant_pool table.
  • fields — Each value in the fields table must be a field_info (§4.5) structure giving a complete description of a field in this class or interface.
  • methods — Each value in the methods table must be a method_info (§4.6) structure giving a complete description of a method in this class or interface.
  • attributes — Each value of the attributes table must be an attribute_info (§4.7) structure
  • attribute_pool — All attributes from all structures
Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net35 was computed.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.8415.27098 192 1/15/2023