Ejemplo n.º 1
0
long FString::IndexOfAny (const FString &charset, long startIndex) const
{
	return IndexOfAny (charset.Chars, startIndex);
}
Ejemplo n.º 2
0
int stringx::IndexOfAny(ref<ArrayV<WCHAR> > chs, int pos) const
{
	pin_ptr<WCHAR> pin = chs->GetBuffer();
	return IndexOfAny(pin.ptr(), chs->Count(), pos);
}