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
In a project using Entity Framework, say I have an entity such as [Table("MyTable")] public partial class MyTable { public string FirstName { get; set; }
At the moment I'm programming a REST service in .NET5 for Apple Wallet. All works fine now, registering, unregistering, manual update a card. The problem is the
How can I get the enum value if I have the enum string or enum int value. eg: If i have an enum as follows: public enum TestEnum { Value1 = 1, Value2
I'm wanting to report a line every time my selenium based automation framework clicks on a control. My object repository is storing individual controls like thi
I´m developing a school project where i need to export a html table into a csv file, and when i click in a button i need to save that file into a path lik
I'm creating a plugin for Outlook using VSTO (C#) and I have a problem how to control EntryID of appointments. Every appointment has his unique EntryID and it's
I am trying to add two new test projects to my solution. When I add them and add references, the build initially creates the dll's in the debug folder. when I
I have the asp.net core MVC project and separate WebApi project in one solution. I'm adding the swagger following the documentation on github. Here is my Startu