netfx-Reflector 1.0.0.11
dotnet add package netfx-Reflector --version 1.0.0.11
NuGet\Install-Package netfx-Reflector -Version 1.0.0.11
此命令旨在在 Visual Studio 中的包管理器控制台中使用,因为它使用了 NuGet 模块版本的 Install-Package。
<PackageReference Include="netfx-Reflector" Version="1.0.0.11" />
对于支持 PackageReference 的项目,将此 XML 节点复制到项目文件中以引用此包。
paket add netfx-Reflector --version 1.0.0.11
NuGet 团队不为此客户端提供支持。请联系其 维护者 以获得支持。
#r "nuget: netfx-Reflector, 1.0.0.11"
#r 指令可用于 F# Interactive 和多语言笔记本。将其复制到交互工具或脚本源代码中,以引用此包。
// Install netfx-Reflector as a Cake Addin #addin nuget:?package=netfx-Reflector&version=1.0.0.11 // Install netfx-Reflector as a Cake Tool #tool nuget:?package=netfx-Reflector&version=1.0.0.11
NuGet 团队不为此客户端提供支持。请联系其 维护者 以获得支持。
通过 Reflect 实现强类型静态反射
// 空静态方法
MethodInfo cw = Reflect.GetMethod(
() => Console.WriteLine);
// 实例 void 方法
MethodInfo mi =
Reflect<IView>.GetMethod(v => v.Show);
// 返回布尔值的实例方法
MethodInfo pi = Reflect<IViewModel>
.GetMethod<bool>(v => v.Save);
-
- netfx-Guard (>= 1.3.2)
NuGet 包 (3)
显示依赖于 netfx-Reflector 的前 3 个 NuGet 包
包 | 下载 |
---|---|
netfx-System.Net.Http.HttpEntityClient
强类型 Linq 到 Web API。基于 HttpClient 构建,提供与基于类型实体的类型化 REST 服务交互的最简单方法。例如:var products = client .Query<Product>("products") .OrderBy(x => x.Downloads) .Skip(25) .Take(25) .ToList(); |
|
netfx-System.ComponentModel.Attributes.Tests.xUnit
xUnit 测试用于 netfx-System.ComponentModel.Attributes |
|
CMS.Framework
描述 |
GitHub 仓库 (1)
显示依赖于 netfx-Reflector 的前 1 个热门 GitHub 仓库
仓库 | 星标 |
---|---|
ploeh/Hyprlinkr
ASP.NET Web API 的 URI 构建辅助库
|