Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
58 views

I implemented this simple loop in C# which runs a 100 times, and in each iteration waits for 50ms. using System.Diagnostics; var sw = Stopwatch.StartNew(); for (int i = 0; i < 100; i++) { ...
Mark Vincze's user avatar
  • 8,123
0 votes
1 answer
33 views

I'm writing code for .NET 8. Given this class Sample: [Serializable] [TypeConverter(typeof(ExpandableObjectConverter))] [DataContract] public class Sample { [DataMember] public int SampleId {...
mich's user avatar
  • 21
Advice
0 votes
4 replies
40 views

I have a question about how try/finally behaves when using return statements in C#. Consider the following methods: public int Test() { return 12; } public int Test2() { try { ...
Colin's user avatar
  • 41
0 votes
0 answers
30 views

I want to make an application that reads out the db values from a microphone. For that I use NAudio to "record" a WaveIn stream, convert the Data to samples, get the max of each buffer, ...
DefinitivVair0's user avatar
-1 votes
0 answers
55 views

this is my productupdate page .whenn the user clicks on the update button the details preload here via viewmodel sent by action. the user can see its previously uploaded pictures and since i cant ...
Ali Sedghi's user avatar
0 votes
0 answers
17 views

I am using Godot Mono 4.5.1 stable, and am trying to get Facepunch.Steamworks working. I specifically run into this error: E 0:00:02:363 Steamworks.SteamAPIInitResult ... /usr/lib/dotnet/shared/...
ultrabluehuman's user avatar
1 vote
1 answer
60 views

I am using a WPF DataGrid with MVVM approach. The ItemsSource of the DataGrid is bound to an ObservableCollection of something which has an Id and an ObservableCollection of strings. I want the Id to ...
wolfoe's user avatar
  • 11
1 vote
1 answer
87 views

If I select something and then type quotes, it doesn't replace as expected, it just puts quotes around the selected text. select type one quote (") instead of the expected or How do I ...
ispiro's user avatar
  • 28k
0 votes
0 answers
56 views

hi everyone first of all i did what i all know but it doesnt work services: hotelreservationapi-presentation: image: hotelreservationapi-presentation:latest build: context: ./...
Heansy PG's user avatar