Posts by Vinícius Gabriel • 117 points
2 posts
-
-2
votes1
answer224
viewsA: Is it possible to start serverless-offline by Javascript?
The easiest way for you, is to do unit tests so you don’t have to start your entire application to be able to do your non-unit tests. But if you still want to do this, you should look for how to…
-
2
votes2
answers62
viewsA: Is there a method of merging equal items into a var list in LINQ in C#?
You can use the method Distinct();, for equal items in all attributes (this may not work well for complex objects, so you would have to use the same function, but overwriting the comparator).…