Skip to content

Commit

Permalink
代码兼容性处理
Browse files Browse the repository at this point in the history
  • Loading branch information
xucongli1989 committed Sep 1, 2019
1 parent cc35a90 commit d0e35cb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file added XCLNetTools.2.8.3.nupkg
Binary file not shown.
Binary file removed XCLNetTools.nupkg
Binary file not shown.
4 changes: 2 additions & 2 deletions XCLNetTools/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
//
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
[assembly: AssemblyVersion("2.8.2")]
[assembly: AssemblyFileVersion("2.8.2")]
[assembly: AssemblyVersion("2.8.3")]
[assembly: AssemblyFileVersion("2.8.3")]
2 changes: 1 addition & 1 deletion XCLNetTools/StringHander/FormHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ public static long GetLong(string name, long defaultValue)
/// <returns>参数值</returns>
public static List<long> GetLongList(string name)
{
List<long> lst = null;
List<long> lst = new List<long>();
string[] strArr = FormHelper.GetQueryOrFormStringArray(name);
if (null != strArr && strArr.Length > 0)
{
Expand Down

0 comments on commit d0e35cb

Please sign in to comment.