Cinthia
Cinthia
CC#
Created by Cinthia on 5/8/2023 in #help
❔ Best loading progress WPF
thank you, i was able to do work as I want today using BackgroundWorker
17 replies
CC#
Created by Cinthia on 5/8/2023 in #help
❔ Best loading progress WPF
thanks I will try to implement a ring
17 replies
CC#
Created by Cinthia on 5/8/2023 in #help
❔ Best loading progress WPF
because my list only is created after the api request is finish
17 replies
CC#
Created by Cinthia on 5/8/2023 in #help
❔ Best loading progress WPF
I read some documentation, and usually they take the values in a List Loop, but I dont understand how to do that
17 replies
CC#
Created by Cinthia on 5/8/2023 in #help
❔ Best loading progress WPF
I am just guessing
17 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
I will, thank you 👋
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
i really dont understand how this could be better than default value
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
public string ReadData{ get { return ($"{(name.common == null ? "n/d" : name.common)}, {(name.official == null ? "n/d" : name.official)}, {(region == null ? "n/d" : region)}"); } }
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
I discover what he wants, a reading property
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
thank you guys i will try this approach
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
it is possible
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
I did that, and I got that code where I can look up the full name, as we still have time to deliver the project, he won't tell me anything else, or deduct points from the grade
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
because now he was very clear, do not use the default value, I have no idea what to do, he even said that the way he wants it was simpler, but I don't know what could be simpler than that
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
I sent this code to the professor, and that's not it yet, it's not to be done with default
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
public string giniYear { get; set; } = ReturnNull(); public double giniValue { get; set; }
} public static string ReturnNull() { return "n/d"; }
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
thank you, I will try to do it that way and send it to him
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
I don't either, but it was with this orientation that I did the returnNull in the other code, it said I'm getting close, but it seems that it is more confused than with the default value
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
NomeCompleto = FullName sorry 🙂
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
he told me to look at this code in FullName that I could get the idea, but it only confused me more public class Aluno { public int Id { get; set; } public string Nome { get; set; } public string Apelido { get; set; } public List<Disciplina> Disciplinas { get; set; } public string NomeCompleto { get { return $"{Nome} {Apelido} "; } }
38 replies
CC#
Created by Cinthia on 5/2/2023 in #help
❔ Change Null Values
yes, I used Json to C# and everything came like this, as I'm still defining the values ​​that I'm going to show in the project, I haven't changed it yet
38 replies