I have an xml node that looks like <slot highcount="20" lowcount="10" />
I've tried the following xpath expression:
XmlNode node = xdoc.SelectSingleNode("slot[@lowcount>=12] && slot[@highcount <=12]");
but I get an invalid token error and I don't have enough experience with this to know what I'm doing wrong. Any ideas?