1234567891011121314151617181920212223242526272829 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WPFTestUpdate
- {
-
-
-
- public static class Extend
- {
-
-
-
-
-
- public static string ToCompressKey(this string version)
- {
- return $"{version}_{Const.Key}.zip";
- }
- }
- }
|