I have a ComboBox that gets filled with items from my database. I'm trying to get the ID of the item that is selected in the ComboBox, but nothing I've tried se
I have created and installed a service a couple of times. Initially it was working fine, but after some changes in the service Code it start giving the error wh
This is what it should look like: This is what it should look like 2nd Picture: Program.cs using EasyTabs; using System; using System.Collections.Generic; usi
I am developing a UWP application to work with HID devices. The application is working correctly almost all the time. But it often crashes when I close or colla
This is my last hope please help me I am stuck with that check box in pdf editor. I'm using iText library to generate pdf file based on template. But when I try
var listForTestGroup = new List<Booking> { new Booking{Project="HR", Date= DateTime.Parse("01/02/2020") , Allocation= 10},
In C# you can catch an exception in the default test suite like this: [TestMethod] [ExpectedException(typeof (ArgumentNullException))] public void TestNullComp
I have a WCF REST Service with the following OperationContract that saves files on the disk: [OperationContract] [WebInvoke(UriTemplate = "FileSave", Method = "
We had .net core API already authenticating with AzureAd and then a new requirement came to authenticate the same API using Auth0 as well while keeping existing
i'm part of a MarketMaker team and currently need to get crypto Market Data from Binance. Here are the requirements... get public market data, so dont have api
So I've been trying work out how to approach what i initially was a simple problem - turns out i'm an idiot and have no idea what i'm doing. Firstly my data st
I have a C# console program that prints an App.config value. Can I override this value from an environment variable? Example App.config: <appSettings>
I am developing an application using ASP.Net MVC core 2.1 where I am continuously getting the following exception. "InvalidOperationException: No authentica
The below code works in my desktop application if: Outlook is not running Outlook is running in Administrator rights When Outlook is running normally, the code
I have System in my namespace, what am I missing? I am brand new to C# and am following a course on Udemy and following a book titled C#8.0 and .NET Core 3.0 -
I'm attempting to detect all URLs listed in a free text block. I'm using the .nets Regex.Matches call.. with the following regex: (http|https)
I have this program wherein I use timer to redirect to another page. It do work but the problem is when I click cancel button a messagebox will appear and when
I want my c# application (which I execute on a raspberry pi) to run a bash script whenever it starts.. basically : the script is located in /etc/init.d and is n
I have a list of objects, which in turn contain nested lists of further objects. I would like to flatten the object graph into a DataTable. I found code which t
Today, I faced a problem with performance while iterating through a list of items. After done some diagnostic, I finally figured out the reason which slowed dow