string id = strCurrnetKey.Substring(strCurrnetKey.IndexOf(":") + 1);
是什么意思?strCurrnetKey是string类型
取出strCurrnetKey字符串中":"号以后的所有字符串
假如 strCurrnetKey="myid:12"
那么id就是"12"