Posts by Paullus Nava • 101 points
5 posts
-
1
votes1
answer36
viewsA: Problem with Inotifypropertychanged C# WPF
Details are missing to give a more accurate answer, such as what kind of list you are using. I’ll assume you’re adding Servico to a list List<Servico>. If applicable, this class does not…
-
0
votes4
answers634
viewsA: JPA List<Map mapping.. >
I’d do it this way: import java.math.BigDecimal; import java.time.DayOfWeek; public class Curso { private int id; private String nome; public int getId() { return id; } public void setId(int id) {…
-
3
votes2
answers675
viewsA: Search for files by extension
Just complementing @Barbetta’s reply, which is correct. There is one however, in case the directory has thousands of files, the runtime can be considerable, even more if we are searching in a…
c#answered Paullus Nava 101 -
2
votes1
answer41
viewsA: How to use regular expression without using the Regex class?
Good evening, friend. I think you’re confusing it with Javascript. In Javascript it is possible to create a regular expression only the closed bar pattern var re = /ab+c/; or with the Regexp class…
-
1
votes1
answer67
viewsA: Entity Core, in relationships
How you are creating the objects? Who do you create first? How you are associating the occurrence to the student? How are you saving the objects? I believe that without this information it is…