Class JsonConverter
Info
Converter for conversion between json data and other spreadsheet file formats.
public class JsonConverter
Inheritance
Inherited Members
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Examples
1JsonConverter converter = new JsonConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "data.json";
4JsonSaveOptions saveOptions = new JsonSaveOptions();
5saveOptions.OutputFile = "res.xlsx";
6converter.Process(loadOptions, saveOptions);
Constructors
JsonConverter()
public JsonConverter()
Methods
Process(LoadOptions, JsonSaveOptions)
Converts between json data and other spreadsheet file formats.
public void Process(LoadOptions loadOptions, JsonSaveOptions saveOptions)
Parameters
loadOptions
LoadOptions: Options for input and loading:saveOptions
JsonSaveOptions: Options for output and saving
Namespace: Sheetize Assembly: Sheetize.dll