Posts by Rafael Moreira • 226 points
5 posts
-
0
votes1
answer517
viewsQ: How is a Nodejs application distributed to customers?
I’m taking a look at Nodejs and a question has arisen about its distribution. Assuming I have a company, and I use Express/Nodejs to create a simple REST service for my main application. To install…
-
-1
votes1
answer415
viewsQ: Creating reports in C#!
Hello, I’m looking for a library/tool that lets you create reports in c#. There’s Fast Report and Crystal Reports but they both get paid... You wanted something Open Source/Free and you don’t need…
-
9
votes1
answer94
viewsQ: Why can Unboxing only be made for the type that was previously performed Boxing?
I’ve been searching for why there is Unboxing and Boxing, the answers I found say there is to value types have the same behaviour as Reference types, for example on non-generic lists ArrayList. So…
-
2
votes3
answers278
viewsA: How to fire a message every click in jquery?
Change all the functions append for html. And make sure to reset the div #message with $("#mensagem").html("");
-
8
votes3
answers157
viewsQ: How does field initialization work in constructors?
In the C# documentation it is written: If a class does not have a constructor, a default constructor is Automatically generated and default values are used to initialize the Object Fields That is,…