Skip to main content

Questions tagged [.net]

.NET is a software framework supporting a multi-language paradigm and supporting language interoperability. .NET applications are executed in a virtual machine (CLR) which provides a few important services: security, memory management and exception handling.

2 votes
1 answer
80 views

I've written a C# API using .NET 9 with the goal of managing a personal investment portfolio – that means, adding funds adding or removing transactions (for ETFs, ETCs, and usual funds) retrieving ...
Daniel's user avatar
  • 353
4 votes
1 answer
368 views

I wanted to check my system design and/or object oriented design skills. I started with this Tic Tac Toe WinForms Desktop program. The user couldn't input characters other than O , X . Both players of ...
Siva Sankaran's user avatar
2 votes
1 answer
160 views

I am developing a Blazor web app using C# .NET 9 in Visual Studio Code. I am using SQL Server 2017. This project is intended for internal company use. In the ...
DevQt's user avatar
  • 157
1 vote
1 answer
97 views

I'm creating a three layered Visual Studio template solution that I'll be using as a starting point for all ASP.NET projects. The layers are Presentation, Application and Infrastructure. ...
FAMO4S's user avatar
  • 33
3 votes
1 answer
143 views

This parser is made for part of larger trivia game, and only allowed numbers are positive integers. So negative or decimal numbers should return -1 as sign of error. I'm pretty new to programming and ...
Nemanja's user avatar
  • 33
4 votes
2 answers
186 views

One of my latest projects has been implementing a custom .NET logger, as a lot of our products use their own logging solution and we're trying to standardize, but that means accounting for a lot of ...
Scott McAllister's user avatar
4 votes
1 answer
117 views

The task is to make a simple LockProvider that will lock a thread by identifier. Basic requirements: Simple call via using block. Support for CancelationToken to get out of waiting without exceptions....
sDima's user avatar
  • 889
3 votes
1 answer
92 views

I just got my first .NET MAUI App up and running. I pushed it to my repo at https://codeberg.org/ulrich-jell/MoodDiary It aims to track your overall mood of the day, so you can (more or less) quantify ...
Tripple_U's user avatar
2 votes
1 answer
119 views

I use this code as reference for when I start working on a new project whether that be for personal or for work. It's worked fine so far, but I'm wondering if anyone can read it and provide any ...
sammy medawar's user avatar
7 votes
1 answer
117 views

I am trying to complete a challenge - a simple .net core API with one simple endpoint. This endpoint should validate the user's information and return a unique ID. He should provide: 1) Name, 2) ...
Tania Marinova's user avatar
7 votes
2 answers
456 views

I am writing some C# code. I want to find a data structure that can implement the following strategy: FIFO data access mode Multiple independent threads add elements to the data structure At a random ...
Aycon's user avatar
  • 225
4 votes
1 answer
171 views

I am new to entity framework, and I've been working on a project lately that I used clean architecture in and found myself in a bit of hassle. should I introduce further abstraction to the already ...
Lemon juice's user avatar
5 votes
2 answers
220 views

I've created some functions to calculate summation, maximum, minimum, average and standard deviation value of selected cells from DataGridView in C#. The ...
JimmyHu's user avatar
  • 7,575
3 votes
1 answer
130 views

I am trying to implement Oauth in my .net API with EntityFramework. I already completed the custom local authentication with JWT tokens and refresh tokens. I got a little bit confused as to how I ...
Lemon juice's user avatar
4 votes
1 answer
113 views

Do you recommend adding a layer of abstraction on top of EF Core for example we have an API controller responsible for authentication do I just call EF Core methods directly in the controller or do I ...
Lemon juice's user avatar

15 30 50 per page
1
2 3 4 5
83