1
Answer

VC++ equivalent of C# keyword params

Photo of kannan d

kannan d

14y
2.4k
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)