public static GetVarNode Read(byte[] bytes) { GetVarNode node = new GetVarNode(); ByteBuffer bfs = new ByteBuffer(bytes); VisualNode.Read(bfs, node); return(node); }
public static OpNode Read(byte[] bytes, OpNode node) { ByteBuffer bfs = new ByteBuffer(bytes); VisualNode.Read(bfs, node); node.resultField = FieldNode.Read(bfs.ReadBytes()); node.resultField.Target = node; return(node); }