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 ?
With C# 6, you can now use static imports (see msdn) For example,
using static Utils;