(7 XP) A function that compares the length of two strings.
Comparator.cs
.CompareCharactersCount(string str1, string str2)
that compares if two strings have the same length.CTRL+F5
to test it.CompareCharactersCount("AB", "CD") ➞ true
CompareCharactersCount("ABC", "DE") ➞ false
CompareCharactersCount("Test", "GitHub") ➞ false