You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone
If I write this code:
string BufferRX = “HELLO”;
int Pos = BufferRX.IndexOf("E");
Pos is equal 1
but if I write
string BufferRX = “”;
int Pos = BufferRX.IndexOf("E");
Pos is equal -1
That's all Ok
If I put this code in Maui Android or Windows, Pos = -1, but if I put it in IOS Pos = 0
This is a Bug ????
I try with .core 9.0
Beta Was this translation helpful? Give feedback.
All reactions