簡體   English   中英

System.ValueTuple 4.4.0 -> 4.5.0 有什么變化?

[英]What changed in System.ValueTuple 4.4.0 -> 4.5.0?

我考慮將我的System.ValueTuple引用從 4.4.0 更新到(當前)4.5.0。

為了避免回歸,我想找出這兩個版本之間發生了什么變化。 nuget 頁面說:

發行說明

https://go.microsoft.com/fwlink/?LinkID=799421

它鏈接到 .NET Core github 存儲庫。

“發行說明”鏈接是否已損壞,或者 .NET Core github 存儲庫是否實際包含System.ValueTuple的更改日志? 如果是后者,具體在哪里? 我嘗試在存儲庫中搜索System.ValueTuple ,它產生了一些結果,但沒有幫助我找到 4.4.0 和 4.5.0 版本之間的更改。

System.ValueTuple 的源代碼可以在這里找到。

根據Nuget-History ,4.4.0 版於2017年 8 月 9 日發布,4.5.0 版於2018 年 5 月 29日發布。

因此,根據 git 歷史記錄, 是在此時間范圍內進行的唯一提交(修復文檔錯字):

  public T1 Item1;

  /// <summary>
- /// The current <see cref="ValueTuple{T1, T2}"/> instance's first component.
+ /// The current <see cref="ValueTuple{T1, T2}"/> instance's second component.
  /// </summary>
  public T2 Item2;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM