DynamicBinder 1.5.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package DynamicBinder --version 1.5.1
NuGet\Install-Package DynamicBinder -Version 1.5.1
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="DynamicBinder" Version="1.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DynamicBinder --version 1.5.1
#r "nuget: DynamicBinder, 1.5.1"
#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 DynamicBinder as a Cake Addin
#addin nuget:?package=DynamicBinder&version=1.5.1

// Install DynamicBinder as a Cake Tool
#tool nuget:?package=DynamicBinder&version=1.5.1

DynamicBinder and LateBinder NuGet Package

What's this?

This is the class library for .NET.

This library allows you to dynamic access to object methods, properties, and fields even if they are private members by Reflection technology.

You can access the both of object instance members and class static members by name that specified string argument at runtime not compile time, or C# 4.0 "dynamic" syntax.

How to install?

You can install this library via NuGet.

PM> Install-Package DynamicBinder

How to use?

C# "dynamic" syntax

Instance member access

After import(open) namespace "Toolbelt.DynamicBinderExtension", you can use ToDynamic() extension method that returned C#4.0 "dynamic" type at any object.

using Toolbelt.DynamicBinderExtension;
...
// call instance method.
var retval = (int)obj.ToDynamic().MethodName(arg1, arg2);

// get & set instance property.
var value = (int)obj.ToDynamic().PropName;
obj.ToDynamic().PropName = newValue;

// get & set instance field.
var value = (int)obj.ToDynamic().FieldName;
obj.ToDynamic().FieldName = newValue;
Static member access

After import(open) namespace "Toolbelt", you can use DynamicBinder.Create<T>() and DynamicBinder.Create(Type t) static method that returned C#4.0 "dynamic" type.

using Toolbelt;
...
var binder = DynamicBinder.Create(typeof(Foo));
// call static method.
var retval = (int)binder.MethodName(arg1, arg2);

// get & set static property.
var value = (int)binder.PropName;
binder.PropName = newValue;

// get & set static field.
var value = (int)binder.FieldName;
binder.FieldName = newValue;

Notice: retrieve class type return value from method calling

the follow test code is fail.

object bar = foo.ToDynamic().GetBarObject();
Assert.AreEqual("BarClass", bar.GetType().Name); // report actual is "DynamicBinder"!

Because C# dynamic conversion type to object is return DynamicBinder object it self.

You should rewrite avobe test code as follow.

// etract C# dynamic object to DynamicBinder object, static type world.
var retval = foo.ToDynamic().GetBarObject() as DynamicBinder;
// DynamicBinder class exposed "Object" property to access the binding target object.
Assert.AreEqual("BarClass", retval.Object.GetType().Name); // Green. Pass!

Of course, if you have the right type information, thease test codes can write follow:

var bar = (BarClass)foo.ToDynamic().GetBarObject();
Assert.AreEqual("BarClass", bar.GetType().Name); // Green. Pass!

Late bind syntax

Instance member access

After import(open) namespace "Toolbelt.DynamicBinderExtension", you can use ToLateBind() extension method that returned "LateBinder" object at any object.

"LateBinder" has follow members.


  • Call(name, paams[] args) method
  • Prop[name] property
  • Field[name] property

using Toolbelt.DynamicBinderExtension;
...
// call method.
var retval = (int)obj.ToLateBind().Call("MethodName", arg1, arg2);

// get & set property.
var value = (int)obj.ToLateBind().Prop["PropName"];
obj.ToLateBind().Prop["PropName"] = newValue;

// get & set field.
var value = (int)obj.ToLateBind().Field["FieldName"];
obj.ToLateBind().Field["FieldName"] = newValue;
Static member access

After import(open) namespace "Toolbelt", you can use LateBinder.Create<T>() and LateBinder.Create(Type t) static method that returned "LateBinder" object.

using Toolbelt;
...
var binder = LateBinder.Create<Foo>();
// call static method.
var retval = (int)binder.Call("MethodName", arg1, arg2);

// get & set static property.
var value = (int)binder.Prop["PropName"];
binder.Prop["PropName"] = newValue;

// get & set static field.
var value = (int)binder.Field["FieldName"];
binder.Field["FieldName"] = newValue;

No use extension methods

If you feel these extension method is dirty, you can chose no using these extension method.

Instead, you can use LateBinder class and DynamicBinder class like follow code.

// do not open namespace "Toolbelt.DynamicBinderExtension".
using Toolbelt;
...
dynamic dynamicBinder = new DynamicBinder(obj);
var retval = (int)dynamicBinder.MethodName(arg1, arg2);

var lateBinder = new LateBinder(obj);
var retval = (int)lateBinder.Call("MethodName", arg1, arg2);

Note

"reinventing the wheel"

There are many many packages more than 50 about reflection & private member accessing library.

https://www.nuget.org/packages?q=Tags%3A%22reflection%22

But I couldn't find any library which has my favorit syntax and features 😃.

So I deside to "reinvent the wheel".

Performance issue

This library "DynamicBinder" and "LateBinder" may be very slowly because the implementation of this library is calling reflection API directory without chache, compile to delegate, complile to expression, and so on.

There is plenty room for improvement to more faster, more high performance.

If you prefer, you can fork this source codes and improve it.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net40 is compatible.  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. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.0

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on DynamicBinder:

Repository Stars
jsakamoto/Toolbelt.Blazor.I18nText
The class library that provides the ability to localize texts on your Blazor app!
Version Downloads Last updated
2.2.0 311 12/31/2023
2.1.0 78 12/28/2023
2.0.0 3,127 3/28/2022
1.5.1 5,043 12/22/2017
1.5.0 19,749 4/22/2014
1.4.0 1,381 4/18/2014
1.3.0 1,219 3/14/2014
1.2.0 1,239 3/12/2014
1.1.0 1,220 3/1/2014
1.0.0 1,345 2/22/2014

v.1.5.1
- Enhance: Add .NET Standard 2.0 support.
v.1.5
- Enhance: Add "Object" property which expose the object that binding target.
- Fix bug: Can not extract class type object by DynamicBinder.
v.1.4
- Fix bug: Can not retrieve class type properties by DynamicBinder.
v.1.3
- Add avility of exposing nested private object graph.
v.1.2
- Add avility of caching System.Reflection.MemberInfo (use SetCache(disctionary) method)
- Add GetInfo(name) method on PropertyBinder and FieldBinder that returned System.Reflection.MemberInfo.
v.1.1
- Support base class members access.