Remco Beurskens

Results 11 comments of Remco Beurskens

For me it may be a different issue, but similar symptoms. In my case, i was calling ```.multiselect('refresh')``` indirectly from the ```onInitialized``` handler (as i needed to set my options...

Not sure if this what you are looking for, but this may be a workaround if you want to be able to get a partial for a class that implements...

See referenced issue in Caste.Core. I guess whenever they release a version that includes the fix, I can just use the updated Casle.Core version to resolve the problem.

```C# using NSubstitute; using NSubstitute.Core; namespace TestProject1; public interface IMyData { bool EnableStuff { get; } string Message { get; } } public interface IProcessor { void Process(object data); void...

Well, the idea here is to test the workflow implemented inside the `TestAction()` method which is dependent on the `IMyData` object that is passed in. And indeed I am testing...

No, not yet. I will take a look at the performance next week.

In my own project I'm using C#7 System.ValueTuple (which is a struct), but I don't know what the minimum c# / .net version is that should be supported. I found...

(I have not tested if caching improves performance, but I'm quite confident a dictionary lookup will be faster than repeated calls to MakeGenericType. However, it will only make a difference...

Note: ~~there's still a bug when deserializing ISet\: An instance of List\ is used, bypassing the type system as IL is used in the setter, causing EntryPointNotFoundException to be thrown...

Sorry for the delay in resolving the conflicts. I switched jobs in the meantime and just found I had something unfinished. (I could not test if my changes still work...