JsonUtils
JsonUtils copied to clipboard
Json to C#, VB.Net, Javascript and SQL Server Table
When a property starts with a number, VB complains in the class. For VB, when a property starts with a number, prefix the name with '_' underscore. Example of URL...
Since .NET Core 3, there is a new feature to serialize / deserialize Json integrated to .NET Core 3. The attribute `JsonPropertyName(string)` is used to set the name of the...
Hi, .NET Core 3.0 brings a new Json Serializer (System.Text.Json.Serialization). New attribute names for the data members came along with this. Please add 'JsonPropertyName' to the selection box (C#). Change...
Instead of: ``` class BreadCrumbTrailItem { public $associatedFieldName; //object public $searchParams; //String public $text; //String public $type; //String public $value; //String } ``` we get: ``` class BreadCrumbTrailItem { /**...
When generating php classes, the type is put as a trailing comment next to the field. I think it'd make sense to switch this to phpdoc comments as it is...
PHP classes can support namespaces. An example of PHP class with namespace: ```php
This pull request solve issue #30 and #24.
This pull request solve issue #31.
When selecting the "Add Namespace" checkbox, could there also be a textbox that allows the user to enter their own namespace (instead of it defaulting to JSONUtils)?
Is it possible to support associative arrays in the future or is there a reason this couldn't happen? I suspect some sort of hint would need to be provided to...