Dou
Docker container works fine in manual invocation but not when started via VS2022's start button
My project structure:
docker-compose.yml:
Dockerfile:
When I start the project with
docker-compose up
it works just fine but starting it via VS fails with this error:
5 replies
Get the bytes of byte[] as string
Hi, I have a byte[] like
byte[] arr = new byte[] {1,2,3}
is there a way to get those 1,2,3 or even better new byte[] {1,2,3}
.
For more context, what I'm trying to do is, I'm source generating for Roslyn and adding fields to the source code via a method implemented as
I want to call
5 replies