holdenmai

Results 5 issues of holdenmai

For issue #65 it looks like the main failing point was that attributes applied to the underlying Box did not similarly get applied to the CollectionResultBox. Since the original code...

Currently, the below is not supported. ``` var target = new Interpreter(); var parameters = new[]{ new Parameter(nameof(a), typeof(int)), new Parameter(nameof(b), typeof(int)), }; Assert.DoesNotThrow(() => target.Parse("a += b", parameters)); ```...

enhancement
investigate

Understandably, the Lambda class is essentially a wrapper around the parsed delegate due to the way we treat the parameter creation. However, the way we currently implement the Invoke, the...

enhancement
investigate

Implementation to resolve #252. This needs to be completed prior to #250 since it depends on this logic to work in order to test some of the edge cases with...

A totally unnecessary improvement to the performance, and reduction of memory usage/object creation of the Capitalize function. See attached file for timing tests. [CapitalizationTiming.txt](https://github.com/aloneguid/netbox/files/9612331/CapitalizationTiming.txt) The 4 different cases shown in...