ServiceStack.Extensions.GetComplexTypeName C# (CSharp) Method

GetComplexTypeName() public static method

public static GetComplexTypeName ( this t ) : string
t this
return string
		public static string GetComplexTypeName(this Type t)
		{
			return t.FullName.Replace(t.Namespace + ".", "").Replace("+", ".");
		}
	}