コード例 #1
0
ファイル: PiczUrlHelper.cs プロジェクト: Steve-Fenton/PICZ
        public static string PiczUrl(this UrlHelper helper, string url, int size, string hash = "")
        {
            url = url.TrimStart(new char[] { '~' });

            return($"{url}?s={size}{BaseHelper.GetImageHashForUrl(hash)}");
        }