3cc9601fd9
Former-commit-id: ff34202749e8df2aa83f2578b16260b444f50987
28 lines
489 B
C#
28 lines
489 B
C#
using System.Dynamic;
|
|
|
|
public class TestConvert : DynamicObject
|
|
{
|
|
public override bool TryConvert (ConvertBinder binder, out object result)
|
|
{
|
|
result = null;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public class Test : DynamicObject
|
|
{
|
|
public override bool TryInvokeMember (InvokeMemberBinder binder, object [] args, out object result)
|
|
{
|
|
result = new TestConvert ();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public class XX
|
|
{
|
|
public static void Main ()
|
|
{
|
|
dynamic t = new Test ();
|
|
string result = t.SomeMethod ();
|
|
}
|
|
} |