Advertisement
Guest User

Untitled

a guest
Apr 11th, 2018
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // Token: 0x06000071 RID: 113 RVA: 0x000043CC File Offset: 0x000025CC
  2. private int SmGetHighestoccurance(string s)
  3. {
  4. string text = "0123456789abcdef";
  5. int num = 0;
  6. string text2 = text;
  7. for (int i = 0; i < text2.Length; i++)
  8. {
  9. char c = text2[i];
  10. num = Math.Max(num, s.Count((char x) => x == c));
  11. }
  12. return num;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement