netfx-Reflector
1.0.0.5
See the version list below for details.
dotnet add package netfx-Reflector --version 1.0.0.5
NuGet\Install-Package netfx-Reflector -Version 1.0.0.5
<PackageReference Include="netfx-Reflector" Version="1.0.0.5" />
paket add netfx-Reflector --version 1.0.0.5
#r "nuget: netfx-Reflector, 1.0.0.5"
// Install netfx-Reflector as a Cake Addin #addin nuget:?package=netfx-Reflector&version=1.0.0.5 // Install netfx-Reflector as a Cake Tool #tool nuget:?package=netfx-Reflector&version=1.0.0.5
Static reflection via Reflect:
// Void static method
MethodInfo cw = Reflect.GetMethod(
() => Console.WriteLine);
// Instance void method
MethodInfo mi =
Reflect<IView>.GetMethod(v => v.Show);
// Boolean returning instance method
MethodInfo pi = Reflect<IViewModel>
.GetMethod<bool>(v => v.Save);
Learn more about Target Frameworks and .NET Standard.
-
- netfx-Guard (>= 1.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on netfx-Reflector:
Package | Downloads |
---|---|
netfx-System.Net.Http.HttpEntityClient
Strong-typed Linq to Web API. Builds on top of HttpClient and provides the easiest way to interface with typed REST services that are modeled around typed entities or contracts. Example: var products = client .Query<Product>("products") .OrderBy(x => x.Downloads) .Skip(25) .Take(25) .ToList(); |
|
netfx-System.ComponentModel.Attributes.Tests.xUnit
xUnit tests for netfx-System.ComponentModel.Attributes |
|
CMS.Framework
Description |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on netfx-Reflector:
Repository | Stars |
---|---|
ploeh/Hyprlinkr
A URI building helper library for ASP.NET Web API
|