ObjectSupporter 1.0.4886.20450

dotnet add package ObjectSupporter --version 1.0.4886.20450
NuGet\Install-Package ObjectSupporter -Version 1.0.4886.20450
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="ObjectSupporter" Version="1.0.4886.20450" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ObjectSupporter --version 1.0.4886.20450
#r "nuget: ObjectSupporter, 1.0.4886.20450"
#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 ObjectSupporter as a Cake Addin
#addin nuget:?package=ObjectSupporter&version=1.0.4886.20450

// Install ObjectSupporter as a Cake Tool
#tool nuget:?package=ObjectSupporter&version=1.0.4886.20450

Extracts name of the object's elements like: properties, methods, variables, constants etc.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.4886.20450 149 5/18/2013

Features:
     * Extract name of the local property: ObjectSupport.GetName(() => LocalProperty)
     * Extract name of the local method: ObjectSupport.GetName(() => LocalMethod())
     * Extract name of the variable or argument: ObjectSupport.GetName(() => variable)
     * Extract name of the constant, enum values etc.: ObjectSupport.GetName(() => SampleEnum.EnumValue1)
     * Extract name of the class property: ObjectSupport.GetName(c => c.Property)
     * Extract name of the class method: ObjectSupport.GetName(c => c.Method())