in reply to Re^4: how to get Perl hash in C#
in thread how to get Perl hash in C#

JSON cannot transport "objects". What would C# do with Perl classes?

You will need to convert your objects to plain hashes (or arrays) that contain the relevant data.

Replies are listed 'Best First'.
Re^6: how to get Perl hash in C#
by Hossein (Acolyte) on Jan 28, 2014 at 07:04 UTC
    Thank you for your answer.

    I was not aware of that :(