x0rld
x0rld
CC#
Created by SlightlyTango on 2/19/2025 in #help
Blazor windows forms server
what are you trying to do ?
4 replies
CC#
Created by Faker on 2/15/2025 in #help
✅ StringBuilder in C#
when you finished to build your string with the stringBuilder you do ToString and you have the total
33 replies
CC#
Created by Zee on 12/13/2024 in #help
my shared projects are not found. how do I fix?
remove them from the solution then re add them
38 replies
CC#
Created by CrownedHaley on 8/15/2024 in #help
Weird Build Error
it's msbuild not dotnet
15 replies
CC#
Created by CrownedHaley on 8/15/2024 in #help
Weird Build Error
try to clean & restore ?
15 replies
CC#
Created by Diesel Geezer on 8/11/2024 in #help
How to check if element exists in html cefsharp
if you just do the selector without the [0] do you have something ?
9 replies
CC#
Created by Diesel Geezer on 8/11/2024 in #help
How to check if element exists in html cefsharp
on response.Result I guess ?
9 replies
CC#
Created by Diesel Geezer on 8/11/2024 in #help
How to check if element exists in html cefsharp
and what's the exception ? @Diesel Geezer
9 replies
CC#
Created by NeotericSh on 7/8/2024 in #help
Extending the Assert class in xunit
you can use some lib like FluentAssertion for that https://fluentassertions.com/exceptions/
11 replies
CC#
Created by 𝕶𝖗ø𝕽ø𝖃 on 6/10/2024 in #help
✅ From App C# Error
show the error
30 replies
CC#
Created by mini on 5/12/2024 in #help
✅ The request was aborted: a protected SSL/TLS channel could not be created
btw remove tls 1.1 and tls 1.0 that could cause some issue
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls | SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls13;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls | SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls13;
154 replies