1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Merge pull request #1239 from disarray2077/matchindex

Add MatchIndex to StringSplitEnumerator
This commit is contained in:
Brian Fiete 2021-11-29 09:27:27 -08:00 committed by GitHub
commit 3bd1e97179
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2817,6 +2817,14 @@ namespace System
return mMatchPos;
}
}
public int32 MatchIndex
{
get
{
return mCurCount - 1;
}
}
public bool HasMore
{