serverExtend.ExtendServerResult.FromJson C# (CSharp) Метод

FromJson() публичный статический Метод

public static FromJson ( string json ) : ExtendServerResult
json string
Результат ExtendServerResult
        public static ExtendServerResult FromJson(string json)
        {
            ExtendServerResult result = new ExtendServerResult();
            result.Extendresult = json;
            return result;
        }
ExtendServerResult