1,624,532 questions
-2
votes
0
answers
36
views
Best practice for coding procedural tank tracks? [closed]
I’m seeking some coding direction for a procedural tank track system in Unity.
In the simplest terms, how is this generally approached?
My goal is a fully procedural solution, so pre-modelling the ...
1
vote
1
answer
36
views
Is there a solution for deserialization problem in NRules in combination with LINQ?
I would like to manage the rules that are to be checked with NRules in a database and read them in dynamically. I therefore need the rule definition in JSON format.
For testing purposes, I have used ...
0
votes
1
answer
30
views
C# WPF Filtering DataGrid ObservableCollection items based on text Input
I've got a datagrid that currently receives messages into it from an ObservableCollection that is updated as messages asynchronously come in. The ObservableCollection has a few visible fields that are ...
2
votes
0
answers
53
views
Calculate rotation of a point around another point on earth (or sphere)
Essentially what I'm trying to do is moving a point relative to two different scales.
The reason is to edit values in a database of a 3d party application.
So basically I want to relocate the red ...
0
votes
0
answers
13
views
Conditional Merge in Protobuf-Net
I have some very specific requirements for a serialization C# library: I need it be able to handle circular references or multiple references to the same object, be capable of deserializing into an ...
-1
votes
0
answers
24
views
c# semantic kernel mcp server connection
I am trying to connect remote mcp server using semantic kernel. The as far as i understand semantic kernel post bad formatted json to mcp server
Correct :
{"jsonrpc":"2.0","id&...
0
votes
0
answers
27
views
How to create a route with parameters only, while still retaining predefined routes
I am attempting to create a very flexible routing system that allows users to configure their own publishable url paths to their own content pages, sort of like a CMS. To achieve this, I created a ...
0
votes
0
answers
31
views
Connect to and query Azure SQL Database using .NET and Entity Framework Core
Microsoft provided the following tutorial, which I have followed twice, but can't get it to work. I have successfully run all the preliminary tests described in the tutorial, so I know the API is ...
0
votes
0
answers
16
views
How to unit test a pipeline in BizTalk 2020? Option to create a New Test is unavailable in VS2019
I'm following the steps in this page to attempt unit testing of one of my custom pipelines. In that article, step 6 says "On the main menu, click Test, and then click New Test."
But in my ...
-1
votes
1
answer
34
views
GeneratedRegex missing backslash character in pattern
[GeneratedRegex("""[\\`\*_\{}\[\]\(\)>\#\+-\.!/:]""")]
private static partial Regex MyRegex();
This should, I think, match the characters
\`*_{}[]()>#+-.!/:
The ...
0
votes
1
answer
27
views
ServiceBusOutput binding not working in .NET 8 isolated Azure Function, but manual send works
I have an Azure Function (isolated .NET 8) that looks like this:
public class Response
{
[ServiceBusOutput("%ServiceBusQueueName%", Connection = "ServiceBusConnection")]
public ...
1
vote
1
answer
59
views
How to add "static" polygon shapes to a cartesian chart?
Using livecharts2 (v2.0.0-rc5.4), I want to have a cartesian chart where I can add a few polygon shapes on the "background" of the chart created from a list of points. Looking over all the ...
0
votes
0
answers
23
views
Problem with COM login (IBSesja) in Comarch ERP Optima – error 8007000E
I'm building a Windows Service in C# (.NET Framework 4.8) that should automatically import sales receipts from XML files into Comarch ERP Optima.
The service is supposed to create a COM session using ...
0
votes
1
answer
54
views
When trying to get specific files from all Assets folders, why it's not finding all the files but only one? [closed]
my goal is after all creations to get specific files and delete some of them leave only one because they are duplicated.
I'm calling this methods with delay i started with 2 seconds (2000) then 10 ...
0
votes
0
answers
72
views
Original Exception not shown in async method call
I'm working on a C# application and have a method that performs an async HTTP call via a custom NuGet package I built myself. Here's the code in question:
using MyClientApp;
public async Task ...