Posts by Bruno Leonardo Conti • 43 points
3 posts
-
1
votes0
answers33
viewsQ: Convert Dynamic to another type
I need to convert a Dynamic variable to another type in Runtime. The type I want to convert is stored in another variable (I don’t know what type at development time). There’s something like this?…
-
3
votes1
answer101
viewsQ: Improve performance in iteration
I have a C# method that receives a List<string> and I must return a string with the list of members of the List<string> ordered by number of occurrences and then alphabetically. I did…
-
-1
votes1
answer168
viewsQ: Validation with more Net Core MVC fields?
I need to validate on a form made in ASPNet Core MVC, but in this validation I need to use more than one field, example below: Models: public class Fornecedor { public virtual int ID { get; set; }…