CallSharp icon indicating copy to clipboard operation
CallSharp copied to clipboard

I/O Call Instrumentation for .NET

Results 8 CallSharp issues
Sort by recently updated
recently updated
newest added

It should be possible to cancel a search if it takes too long.

enhancement
help wanted

Может использовать множество пар { вход, выход }? При этом можно было бы искать только общий алгоритм - применимый для всех таких пар. Сейчас для конкретного входа ищется такая последовательность...

enhancement

It will be much more useful to have **_popup window_**, wich shows **_code_** that was used in given method. For example strings doesn't have '**Reverse**' method, but we can implement...

Combinatorial searches are seriously slowing down the application. There should be a way of speeding those up, possibly by creating `Delegate` instances our of sequential function calls.

Indexers have peculiar annotations, e.g., `string []` indexer shows up as `Chars`.

enhancement

Write a Monte-Carlo sim that determines pairs (triples, ...) of function calls that are commutative.

We need to separate UI and search into separate processes so that search can be a multi-process/multi-computer endevour. Reason for this is that search on a single, local machine takes...

Need to detect and remove call chains which cause x->x, i.e. do not alter the input at all. Example is doing `"abc".Trim()` which has nothing to trim, resulting in `"abc"`.