realivanjxツ
❔ unsafe pointer operation
hi. im trying to rewrite code from other c# project to restore the sanity back. there is this one part that i dont quite understand:
what does the
*buffer++
do? is it equal to buffer[index++]
or buffer[index]++
. thanks.10 replies
❔ change timezone of aspnet docker container
how to change aspnet docker container's timezone? i am using this image
mcr.microsoft.com/dotnet/aspnet:7.0.5-jammy
. i already tried changing the TZ
variable in my docker compose but it is still showing UTC. thanks4 replies
✅ httpclient get download stream in blazor
i have this code to download a file from remote source (about 100 MB).
but it seems that that code above downloads the whole file first at line
using Stream remoteStream
so i cant really show any progress to the gui. is this a bug with the blazor's httpclient implementation because the code works fine on my wpf app. thanks5 replies
❔ system.text.json source generator in net standard
is it possible to use stj's source generator inside a net standard project (i dont mind 2.1)? according to this https://devblogs.microsoft.com/dotnet/try-the-new-system-text-json-source-generator/ source generator is supported in net standard project
3 replies