Making Instant C# Viable - Vizualization
11–20 of 24 posts
Re: Making Instant C# Viable - Vizualization
#12Looks very interesting. How would Instant C# scale up to real code? What about that bank application that has the side effect of throwing 100$ away from your account on each execution?
Re: Making Instant C# Viable - Vizualization
#13I've been planning to do something similar, but at run-time where the last known value of each variable is shown. This would complement my stuff nicely - https://github.com/swax/CodePerspective
Re: Making Instant C# Viable - Vizualization
#14Looks very interesting. How would Instant C# scale up to real code? What about that bank application that has the side effect of throwing 100$ away from your account on each execution?
Re: Making Instant C# Viable - Vizualization
#15Very nice. I'm a bit confused as to how basing this on Roslyn will allow for a MonoDevelop plugin, however. Or did Mono copy the entire Roslyn API, as well?
Re: Making Instant C# Viable - Vizualization
#16Looks very interesting. How would Instant C# scale up to real code? What about that bank application that has the side effect of throwing 100$ away from your account on each execution?
I see it working hand-in-hand with dependency injection. So resolved mock interface implementations will be used by Instant.
Re: Making Instant C# Viable - Vizualization
#17Looks very interesting. How would Instant C# scale up to real code? What about that bank application that has the side effect of throwing 100$ away from your account on each execution?
Re: Making Instant C# Viable - Vizualization
#18I've been using NCrunch for some time now, and really enjoy the instant feedback it gives on failed tests. It constantly chugs away in the background like a faithful dog. I can see things like Instant C# meaning I have to build less: a great productivity enhancer.
Being able to create unit tests from this, or being able to look at calls from unit tests here has definitely been on my mind. The way you enter the "test code" right now is not ideal in the slightest as I talk about in my post.
Re: Making Instant C# Viable - Vizualization
#19I've been planning to do something similar, but at run-time where the last known value of each variable is shown. This would complement my stuff nicely - https://github.com/swax/CodePerspective
Just a quick caution from someone who has been building similar tools (not as fancy though), is that runtime instrumentation can often severely slow down the main app to the extent that people often don't want to run such tooling.
Re: Making Instant C# Viable - Vizualization
#20I see this as a nice stepping stone in between coding and creating and creating unit test.
I have been a fan of Bret Victors work, but the video here has gotten me really excited.