Click here to Skip to main content
15,883,901 members
Home / Discussions / C#
   

C#

 
QuestionHow To Create Math Parser? Pin
Daniyaltjm31-Jul-16 2:12
Daniyaltjm31-Jul-16 2:12 
AnswerRe: How To Create Math Parser? Pin
OriginalGriff31-Jul-16 2:29
mveOriginalGriff31-Jul-16 2:29 
GeneralRe: How To Create Math Parser? Pin
Daniyaltjm31-Jul-16 4:07
Daniyaltjm31-Jul-16 4:07 
GeneralRe: How To Create Math Parser? Pin
OriginalGriff31-Jul-16 4:19
mveOriginalGriff31-Jul-16 4:19 
Questionneed help witch creating method Pin
Member 1138393529-Jul-16 23:55
Member 1138393529-Jul-16 23:55 
AnswerRe: need help witch creating method Pin
OriginalGriff30-Jul-16 0:11
mveOriginalGriff30-Jul-16 0:11 
QuestionParsing a string with multiple values - JSON or Retro? Pin
Michael Breeden29-Jul-16 1:48
Michael Breeden29-Jul-16 1:48 
AnswerRe: Parsing a string with multiple values - JSON or Retro? Pin
Richard Deeming29-Jul-16 2:09
mveRichard Deeming29-Jul-16 2:09 
Can you absolutely guarantee that the names and values will never contain either the : or | characters?

If not, then your "retro" approach will need to come up with some way to escape those characters when they appear in a name or value. And suddenly your parsing code becomes significantly more complicated.


With JSON, you can avoid the dynamic overhead by deserializing to a concrete type:
C#
public class YourClass
{
    public string BU { get; set; }
    public string DetailID { get; set; }
    public string unique_id { get; set; }
    public string job_id { get; set; }
    public string track_number { get; set; }
    public int job_count { get; set; }

    // Any other important properties you need to use...

    // You can even store unknown properties in a dictionary:
    [JsonExtensionData]
    public IDictionary<string, JToken> AdditionalData { get; set; }
}

...

YourClass data = JsonConvert.DeserializeObject<YourClass>(strData);

or to a dictionary:
C#
var data = JsonConvert.DeserializeObject<Dictionary<string, object>>(strData);


The only real way to know which option is more efficient is to profile your code.



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Parsing a string with multiple values - JSON or Retro? Pin
Michael Breeden29-Jul-16 2:43
Michael Breeden29-Jul-16 2:43 
GeneralRe: Parsing a string with multiple values - JSON or Retro? Pin
Richard Deeming29-Jul-16 2:47
mveRichard Deeming29-Jul-16 2:47 
GeneralRe: Parsing a string with multiple values - JSON or Retro? Pin
Michael Breeden29-Jul-16 3:18
Michael Breeden29-Jul-16 3:18 
GeneralRe: Parsing a string with multiple values - JSON or Retro? Pin
Richard Deeming29-Jul-16 3:36
mveRichard Deeming29-Jul-16 3:36 
GeneralRe: Parsing a string with multiple values - JSON or Retro? Pin
Michael Breeden29-Jul-16 4:02
Michael Breeden29-Jul-16 4:02 
Questionconvert Ms access project to c# Pin
dabbourabd28-Jul-16 23:00
dabbourabd28-Jul-16 23:00 
AnswerRe: convert Ms access project to c# Pin
Richard MacCutchan28-Jul-16 23:08
mveRichard MacCutchan28-Jul-16 23:08 
AnswerRe: convert Ms access project to c# Pin
OriginalGriff28-Jul-16 23:09
mveOriginalGriff28-Jul-16 23:09 
GeneralRe: convert Ms access project to c# Pin
dabbourabd28-Jul-16 23:37
dabbourabd28-Jul-16 23:37 
GeneralRe: convert Ms access project to c# Pin
dabbourabd28-Jul-16 23:32
dabbourabd28-Jul-16 23:32 
AnswerRe: convert Ms access project to c# Pin
BillWoodruff29-Jul-16 3:16
professionalBillWoodruff29-Jul-16 3:16 
GeneralRe: convert Ms access project to c# Pin
dabbourabd29-Jul-16 11:00
dabbourabd29-Jul-16 11:00 
AnswerRe: convert Ms access project to c# Pin
Eddy Vluggen29-Jul-16 4:39
professionalEddy Vluggen29-Jul-16 4:39 
GeneralRe: convert Ms access project to c# Pin
dabbourabd29-Jul-16 10:58
dabbourabd29-Jul-16 10:58 
GeneralRe: convert Ms access project to c# Pin
Eddy Vluggen29-Jul-16 14:26
professionalEddy Vluggen29-Jul-16 14:26 
Questionc#, .NET, Application.Idle Event: Confusion with MSDN documentation Pin
User 1106097928-Jul-16 20:11
User 1106097928-Jul-16 20:11 
AnswerRe: c#, .NET, Application.Idle Event: Confusion with MSDN documentation Pin
OriginalGriff28-Jul-16 21:38
mveOriginalGriff28-Jul-16 21:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.