Posts by Vítor Neil Avelino • 910 points
5 posts
-
1
votes1
answer84
viewsA: Pass variable through Converterparameter
Your hat, so far I haven’t been able to use Binding for Converterparameter. Since you need to pass a variable, a viable suggestion is to use Multibinding: XAML <Label x:Name="situacaoPedidoLabel"…
-
2
votes3
answers1073
viewsA: Is controller returning HTML to View wrong?
You can have the same effect using a Partialview. I believe that if your project is object-oriented, with a well-defined model, it can help a lot. _Partials can be created in the same folder as your…
-
48
votes3
answers8111
viewsQ: Nomenclature standard in code for C#
I recognize that it is common for each language to use a pattern to compose its identifiers (variables, constants, objects, controls etc). In the case of C#, what would be the best practices…
-
24
votes3
answers8111
viewsA: Nomenclature standard in code for C#
Generally speaking, for C#, the default Camel case is widely used. Summarizing, in this pattern, names are composed by simply uniting them without any sort of separator, such as underscore (_). What…
-
2
votes3
answers25678
viewsA: What is a Java Bean and what is it for?
I also find the term bean (grain, in English) somewhat obscure. In Java the pun is justified, since the Beans represent the elements from which the product (coffee, in this case) is made. Eric Evans…