Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3600138
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:27:25+00:00 2026-05-18T20:27:25+00:00

I have to deserialize JSON strings that I don’t have any control over. This

  • 0

I have to deserialize JSON strings that I don’t have any control over. This is an extreme example, but it gets the point across:

string fooJson = @"
{
    'foo_baz': 123,
    foo_bar: 'buuuu',
    ""Xyz"": ""\/Date(405928800000-0600)\/"" //1982-11-12
}";

The JSON has to be deserialized into this C# class that I can’t change:

public class Foo
{
    public string Bar { get; set; }

    public int Baz { get; private set; }

    public DateTime Xyz { get; set; }
}

Serializing Foo is no problem.

After deserializing, the results should be…

  • Bar == "buuuu"
  • Baz == 123
  • Xyz == DateTime.MinValue or uninitialized

…but I have problems.

DataContractJsonSerializer, along with DataContract and DataMember attributes on Foo and its members, is basically perfect, except it balks on JSON properties and strings that aren’t properly double-quoted.

JavaScriptSerializer seems to handle the non-standard quoting, but I can’t get it to ignore Xyz or map foo_baz to Baz and foo_bar to Bar.

This is going to be part of a distributable class library, so I’m trying to avoid third-party tools—such as JSON.NET—as much as possible. However, if there’s no built-in way to do what I need, I’m open to suggestions of third-party tools.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T20:27:26+00:00Added an answer on May 18, 2026 at 8:27 pm

    if you don’t have any control over what gets sent to you, you are going to create your own custom parsing engine, as no JSON parsing will work reliably with what you are receiving.

    Maybe you could cleanse/format the string that you receive INTO a JSON string and then parse it as JSON, but otherwise you have to write your own parsing implementation.

    This part will not be over quickly. You will not enjoy it. I am not your king.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have found this example on StackOverflow: var people = new List<Person> { new
I have a project that adds elements to an AutoCad drawing. I noticed that
I have a script that appends some rows to a table. One of the
I have a new web app that is packaged as a WAR as part
i have a input tag which is non editable, but some times i need
I have several USB mass storage flash drives connected to a Ubuntu Linux computer
I have a snippet to create a 'Like' button for our news site: <iframe
I have a login.jsp page which contains a login form. Once logged in the
Let say I have the following desire, to simplify the IConvertible's to allow me
I want to have generalised email templates. Currently I have multiple email templates with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.