Matt Warren
Matt Warren
CC#
Created by SiloCitizen3 on 11/15/2023 in #help
XMl: How to convert IEnumerable<XmlNode> to XmlNodeList ?
XmlNode came out before generics were in C#. It was also tied to attempt to match the spec for xml document from W3C, and is burdened by a need to act as a mutable structure with events. XDocument came out with LINQ and was unbound by other constraints.
12 replies
CC#
Created by Pdawg on 11/10/2022 in #help
JSON Array to build a complex object isn't letting me create multiple different properties inside it
Under the "pages" element, each new {} constructs a different type, since they have different members. You'll have to type the array that is assigned to pages as new object [] { ... }
11 replies
CC#
Created by M B V R K on 10/31/2022 in #help
The type or namespace name 'IArchivable' could not be found
You don't have MBSM.Core.Interfaces in your global.cs file
19 replies