/// <summary> /// Copy constructor.<br> /// Initializes the components list with a deep copy of the source components list. </summary> /// <param name="source"> a field instance to copy /// @since 7.7 </param> public static Field15I newInstance(Field15I source) { Field15I cp = new Field15I(); cp.Components = new List <>(source.Components); return(cp); }
public static Field15I fromJson(string json) { Field15I field = new Field15I(); JsonParser parser = new JsonParser(); JsonObject jsonObject = (JsonObject)parser.parse(json); return(field); }