Giter Site home page Giter Site logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 26, 2024
I don't understand what the issue is.  Can you give more of a code sample?  
With what type are you constructing the serializer?  The 2 is a numeric 
expression, inside the [] it will be an array.

Original comment by [email protected] on 24 Aug 2013 at 2:46

from jsonexserializer.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 26, 2024
I feel the framework is treating any string starting with [ and not having a , 
as a numeric expression.  But I may be wrong, please look at the code samples 
below.

Serializer s = new Serializer(typeof(List<int>));
List<int> x = (List<int>)s.Deserialize("[2]"); //gives me a numeric expression 
error
List<int> x = (List<int>)s.Deserialize(" [2]"); //works as expected
Serializer s = new Serializer(typeof(List<String>));
List<String> x = (List<String>)s.Deserialize("[\"2\"]"); //gives me a numeric 
expression error
List<String> x = (List<String>)s.Deserialize(" [\"2\"]"); //works as expected

Somehow a simple fix of adding a " "(space) in front solves the problem.

Original comment by [email protected] on 24 Aug 2013 at 5:27

from jsonexserializer.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 26, 2024
I'm unable to reproduce the issue.  It's working fine for me.  Are you in a 
different locale?  What framework and OS is this running on?

Original comment by [email protected] on 28 Aug 2013 at 2:26

from jsonexserializer.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 26, 2024

Original comment by [email protected] on 28 Aug 2013 at 2:27

  • Added labels: Type-Defect

from jsonexserializer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.