Exemplo n.º 1
0
        public static ActionsOr <T> Deserialize(IReader reader, Path path = null)
        {
            var actionsOr = new ActionsOr <T>(path);

            actionsOr.Replace(reader, shouldNotify: false);
            return(actionsOr);
        }