Posts by Bruno Dias • 44 points
3 posts
-
0
votes1
answer111
viewsA: Xamarin Observablecollection
Dude, your question is a little fuzzy, but from what I understand you want to upload a list to a page. The Observablecollection is a list that sends a notification when it is changed, i.e., when you…
xamarinanswered Bruno Dias 44 -
0
votes2
answers841
viewsA: What exceptions should I capture in a Try-catch?
Friend, if you need to treat the exceptions separately, I advise to use chained Try catch, follow an example below: try { // código }catch (Excecao1 ex) { //Tratamento da excecao 1 } catch (Excecao2…
-
2
votes4
answers4026
viewsA: Percentage Com javascript
If you want to know if the inserted value has an increase greater than 25% in relation to the current value: var result = valor_input > valorAtual*1.25; If you want to know if the inserted value…
javascriptanswered Bruno Dias 44