Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Token: 0x06000071 RID: 113 RVA: 0x000043CC File Offset: 0x000025CC
- private int SmGetHighestoccurance(string s)
- {
- string text = "0123456789abcdef";
- int num = 0;
- string text2 = text;
- for (int i = 0; i < text2.Length; i++)
- {
- char c = text2[i];
- num = Math.Max(num, s.Count((char x) => x == c));
- }
- return num;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement