gitextract_b38rdefz/ ├── .appveyor.yml ├── .github/ │ └── workflows/ │ ├── dotnet.yml │ └── dotnet48.yml ├── .gitignore ├── .vscode/ │ └── tasks.json ├── Directory.Build.props ├── Dynamitey/ │ ├── Builder.cs │ ├── CacheableInvocation.cs │ ├── Dynamic.cs │ ├── DynamicObjects/ │ │ ├── BaseDictionary.cs │ │ ├── BaseForwarder.cs │ │ ├── BaseObject.cs │ │ ├── Builder.cs │ │ ├── Dictionary.cs │ │ ├── Dummy.cs │ │ ├── ExtensionToInstanceProxy.cs │ │ ├── Factory.cs │ │ ├── FauxType.cs │ │ ├── FluentStringLookup.cs │ │ ├── Get.cs │ │ ├── LateType.cs │ │ ├── Lazy.cs │ │ ├── LinqInstanceProxy.cs │ │ ├── List.cs │ │ ├── Mimic.cs │ │ ├── Recorder.cs │ │ └── RegexMatch.cs │ ├── Dynamitey.csproj │ ├── Expando.cs │ ├── FluentRegex.cs │ ├── InlineLambdas.cs │ ├── InlineLambdas.tt │ ├── Internal/ │ │ ├── Compat/ │ │ │ └── Net40.cs │ │ ├── Curry.cs │ │ ├── InvokeSetters.cs │ │ └── Optimization/ │ │ ├── BareBonesList.cs │ │ ├── BinderHash.cs │ │ ├── InvokeHelper-Regular.cs │ │ ├── InvokeHelper.cs │ │ ├── InvokeHelper.tt │ │ └── Util.cs │ ├── Invocation.cs │ ├── InvokeArg.cs │ ├── InvokeContext.cs │ ├── InvokeMemberName.cs │ ├── PartialApply.cs │ ├── ThisFunctions.cs │ ├── ThisFunctions.tt │ ├── Tupler.cs │ └── sn.snk ├── Dynamitey.sln ├── Dynamitey.sln.DotSettings ├── License.txt ├── NuGet.config ├── Readme.md ├── SupportLibrary/ │ ├── SupportLibrary.csproj │ └── SupportTypes.cs ├── TestResult.xml ├── Tests/ │ ├── Curry.cs │ ├── DynamicObjects.cs │ ├── ExpandoObjs.cs │ ├── Helper.cs │ ├── Impromptu.cs │ ├── Invoke.cs │ ├── Linq.cs │ ├── MimicTest.cs │ ├── PrivateTest.cs │ ├── SpeedTest.cs │ ├── Tests.csproj │ ├── TimeIt.cs │ └── TuplerTest.cs ├── Version.props └── build.fsx