in reply to how to get Perl hash in C#
Have your Perl program dump the output as JSON (use either JSON, JSON::MaybeXS, JSON::Tiny, or JSON::PP - the last of which comes out of the box with recent versions of Perl) either to STDOUT or to a temporary file.
Then get your C# program to read the JSON and parse it. (There are several JSON libraries for C# listed on json.org.)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to get Perl hash in C#
by Hossein (Acolyte) on Jan 24, 2014 at 13:03 UTC | |
by tobyink (Canon) on Jan 24, 2014 at 14:12 UTC | |
by Hossein (Acolyte) on Jan 27, 2014 at 08:02 UTC | |
by Corion (Patriarch) on Jan 27, 2014 at 08:10 UTC | |
by Hossein (Acolyte) on Jan 28, 2014 at 07:04 UTC |