Eg:
Above code will cause the compiler to underline the string return part of the method in red with error 'Expected class, delegate, enum, interface, or struct'.
Reason:
Method definitions need to go into a class/struct definition. Method definitions can't appear outside a class.
To fix, put the GetMD5 method inside the Utility class!