using System; namespace MbUnit.ReSharperRunner.Explorer { internal class StringHelper { public static string GetShortTypeName(string fulllName) { int pos = fulllName.LastIndexOf('.'); pos = pos < 0 ? 0 : pos + 1; return fulllName.Substring(pos); } } }