am trying to find out why my C# 'hello world' program isn't running after installation and set up. this is my code below using System; namespace mysharpproject
I am working on a report in crystal-report which its columns are the days of month and as you know the number of the days changes every month. So my question is
In a .xaml file, I have a number of Textbox objects that are linked to data paths as such: <TextBox Text="{Binding Path=Var1}"> These variables (like Var
I have a program where I am assigning several variables from within a function. When I do the assignments manually it seems to work, but if I write a helper fun
I have a Automapper setup that was working on the v10 version but since i updated it to the latest v11, it wont work anymore. I have no clue what could be the i
I have code that generate order of obstacles: using UnityEngine; using System.Collections.Generic; public class GroundSpawner : MonoBehaviour { public G
I am developping an app using .NET Framework 4.5.2 under Visual Studio for Mac. Apple has added security features to their latest Mac versions, so I'd like to n
is it possible to determ if the Windows Systems tray is expanded or alternativly if a click on the expand icon (small arrow) is happend? I could not found anyth
I'm working on a WPF app that lets users edit data records. For a test, I'm adding 50 rows to a tree view and this takes ~200ms. This creates noticable stutter
There seems to be something I am missing when trying to extend HttpContent so can anyone let me know if they have been successful in the past at doing this? The
I'm trying to broadcast a message from server to a remote client, my problem is that I'm not able to receive the message on the client, the approach I'm current
Whenever I open a temporary cshtml file or compare the difference between the files, the compiler shows a bunch of errors. It's unable to resolve razor syntax d
I am calling an API using: HttpClient client = new HttpClient(); HttpResponseMessage response = await client.GetAsync(path); String content = await response.C
I'm fumbling through my first exploration into docker containers with .NET. My local development environment is good to go - I've got my dev certs created and s
I would like to choose the second or other line from RichTextbox instead of the first or last line. I know this is the code for selecting the first line and the
I am new working in a lab that sends data from a local computer to an HPC. I have been all day working around the following problem I am not familiar with it at
I have a windows form app (.net framework) and I want to use Monaco editor inside it. Scouring the internet does the provide much help and stackoverflow does no
I am working on a 3D game currently that is based on Unity's Roll-a-Ball tutorial. The problem that I have encountered, is that whenever my player jumps, its sp
I have some code and when it executes, it throws a NullReferenceException, saying: Object reference not set to an instance of an object.
My application allows users to enter an Azure Blob Storage SAS URL. How would I go about validating it? I'm using the Azure Storage Blobs client library, and th