NXDO.Data.Reflection.N6 4.0.60.8

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package NXDO.Data.Reflection.N6 --version 4.0.60.8
NuGet\Install-Package NXDO.Data.Reflection.N6 -Version 4.0.60.8
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="NXDO.Data.Reflection.N6" Version="4.0.60.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NXDO.Data.Reflection.N6 --version 4.0.60.8
#r "nuget: NXDO.Data.Reflection.N6, 4.0.60.8"
#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 NXDO.Data.Reflection.N6 as a Cake Addin
#addin nuget:?package=NXDO.Data.Reflection.N6&version=4.0.60.8

// Install NXDO.Data.Reflection.N6 as a Cake Tool
#tool nuget:?package=NXDO.Data.Reflection.N6&version=4.0.60.8

简述

高效反射器

示例

简单示例

    //有一个类,A.ATest 在Test.dll, A为命名空间,ATest为类名,在Test.dll中
    var typeName = "A.ATest,Test"; //可以指定版本
    var type = NXDO.Data.Reflection.AssemblyHelper.GetType(typeName);
    var obj = Activator.CreateInstance(type);
    
    //using NXDO.Data.Extension; //扩展方法
    //NXDO.Data.Extension.TypeHelperExtensions //查看其他支持的操作方法
    
    ITypeHelper th = type.GetTypeHelper(); //扩展方法
    th.其他方法...
    
    type.CreateInstanceEx();    //扩展方法
    ...
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.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

调整外部程序集对于Web中控制器的优化调用(独立发布调整)