Untitled

 avatar
unknown
csharp
3 years ago
380 B
10
Indexable
        if (!File.Exists(path))
            throw new ArgumentException($"Config file cannot be found at path '{path}'.");
        var content = File.ReadAllText(path);

        var config = JsonConvert.DeserializeObject<Config>(content);
        if (config == null) {
            throw new ArgumentException($"Argument 'json' has an invalid value: '{json}'.");
        }
Editor is loading...