Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
using System.Dynamic;
|
||||
|
||||
class Example : DynamicObject
|
||||
{
|
||||
public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result)
|
||||
{
|
||||
result = null;
|
||||
|
||||
Console.WriteLine("This is {0}.", binder.Name);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
dynamic ex = new Example();
|
||||
|
||||
ex.Foo();
|
||||
ex.Bar();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue