public bool HasKeys(params string[] keys)
{
return this.ContainsKeys(keys);
}
Could anyone tell me what the exact equivalent of the above C# code in VC++ is?
Thanks in advance.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
CrishPosted May 21, 2010, 1:13 PM
try this...
public bool HasKeys(string[] Paramvalue)
{
return Paramvalue;
}