Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
129 views

I have a couple of ISerializable classes (simplified): internal interface IBase : ISerializable { int Number { get; } } internal interface ITable : IBase { ISection Section { get; } } [...
bairog's user avatar
  • 3,593
3 votes
1 answer
148 views

I have a couple of classes (simplified): internal interface ITable { int Number { get; } ISection Section { get; } } internal class Table : ITable { public int Number { get; private init; ...
bairog's user avatar
  • 3,593
-1 votes
0 answers
84 views

I'm building a HATEOAS implementation in ASP.NET Core using a LinkCollectionWrapper<T> class that wraps a collection of entities and stores links. My classes look like this: public class ...
Hossein Dara's user avatar
0 votes
0 answers
69 views

I have a C# OpenAPI service, which uses dotnet-nswag.dll openapi2cscontroller to generate the Controller code based on a yaml definition. In Program.cs, builder.Services.AddNewstonsoftJson( ...
kzfid's user avatar
  • 836
0 votes
1 answer
81 views

I'm writing code for .NET 8. Given this class Sample: [Serializable] [TypeConverter(typeof(ExpandableObjectConverter))] [DataContract] public class Sample { [DataMember] public int SampleId {...
mich's user avatar
  • 21
1 vote
1 answer
88 views

I am attempting to code a nested JSON object for an upload API endpoint. I am having issues forming the code for the nested object. When I call the endpoint to post the data to their site, I get a ...
DukeStar's user avatar
0 votes
1 answer
139 views

I have a couple of classes (simplified): internal class OrderItem { public string Name { get; set; } public Order Order { get; set; } } internal class Order { public IReadOnlyList<...
bairog's user avatar
  • 3,593
0 votes
0 answers
65 views

I'm working on a C# program that will integrate with Planning Center's json-api compliant API (docs can be found here.) For (de)serialization purposes, I'm using the JsonApiSerializer library, which ...
In Hoc Signo's user avatar
0 votes
1 answer
120 views

So i have WeaponStats class that contains one of classes that inherit from IDamageType. Fire is empty bacause i didn't receive anything back from game designer and its still empty. But i can add ...
Jariz's user avatar
  • 11
2 votes
1 answer
158 views

I am building an editor script for Unity to import a complicated blueprint JSON asset extracted from another game engine. Some of this data is stored in the keys, meaning I cannot follow a typical ...
RowanofRohan's user avatar
2 votes
0 answers
74 views

I'm using .NET9.0. MRE: public class JTokenEqualityTests { [Fact] public void IntVsJToken_AssertEqual_ShouldFailButDoesnt() { int original = 42; JToken token = JToken....
FluidMechanics Potential Flows's user avatar
3 votes
0 answers
103 views

We have encountered some memory issues when validating JSON. We are using: Newtensoft.Json v 13.0.3 Newtonsoft.Json.Schema 4.0.1 .NET 9.0.304 For validation we have this code: var validationResult = ...
Libor Svoboda's user avatar
2 votes
0 answers
78 views

I'm poking around the documentation, but I'd also want to reach out each to y'all incase there's a known solution to my issue or deserializing a json into different classes. I have items of different ...
Lord Dragon's user avatar
0 votes
1 answer
152 views

We are trying to micro-optimise some parts of our production code and I was expecting that using Arrays would generally be better than Lists in .NET, and most of the times, my benchmarks indicate that....
FluidMechanics Potential Flows's user avatar
2 votes
2 answers
129 views

Preamble: I know about ISerializable deprecation. We have to use it because we have massive legacy codebase for IPC (that uses this interface). We are migrating from .NET Remoting to a crossplatform ...
bairog's user avatar
  • 3,593

15 30 50 per page
1
2 3 4 5
940