Orc.NuGetExplorer.IPackageExtensions.GetKeyForCache C# (CSharp) Method

GetKeyForCache() public static method

public static GetKeyForCache ( this package ) : string
package this
return string
        public static string GetKeyForCache(this IPackage package)
        {
            Argument.IsNotNull(() => package);

            return string.Format("{0}_{1}", package.GetType().Name, package.GetFullName());
        }
        #endregion