This method returns the number of characters in the wide string.
Returns the number of characters in the string.
#include "UltraEngine.h"
using namespace UltraEngine;
int main(int argc, const char* argv[])
{
WString s = "Hello, how are you today?";
Print(s.GetSize());
return 0;
}