Denis
❔ Developing ASP.NET Core apps on Linux
I don't really like develop web apps with VS Code because I find it uncomfortable to add controllers and other such classes typing commands in terminal meanwhile in Visual Studio on Windows I can add them with context menu. Maybe I don't know how to configure VS Code. Tell me please about your experience of web developing using C# on Linux
9 replies
❔ Convert ogg to wav
I can't find working example for NET 7.
I've tried NAudio.Vorbis
using NAudio.Wave;
using NAudio.Vorbis;
using (VorbisWaveReader vorbisStream = new VorbisWaveReader("PathToInput.ogg")) WaveFileWriter.CreateWaveFile("PathToOutput.wav", vorbisStream);
But it says "Couldn't determine container type!"
Do you know a free library for NET 7 that can do it?
5 replies