I have created a public static class utils.cs I want to use it in other classes without prefixing method with utils, what\'s the syntax to do this ?
I'm not sure what you're trying to accomplish by omitting the Utils prefix from the method calls. But if it's just to save space or make the code a little easier to read, you could alias the import to a shorter name:
Utils
using U = Utils;