1
Answer

VC++ equivalent of C# keyword params

Ask a question
kannan d

kannan d

14y
2k
1
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.


Answers (1)