79409399

Date: 2025-02-03 16:34:54
Score: 1
Natty:
Report link

You can just check if any of the characters is the character you are looking for. Since you are looking for the character value of 0x200D (or 8205 in decimal) you can go like this:

static bool IsNeeded(string input)
{

    return input.Any(c => c == 0x200D);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lucas Sander