コード例 #1
0
ファイル: BreakdownTable.cs プロジェクト: shlormz/EQLogParser
 internal object GetSortValue(PlayerSubStats sub) => sub?.GetType().GetProperty(CurrentSortKey).GetValue(sub, null);
コード例 #2
0
 protected object GetSortValue(PlayerSubStats sub)
 {
     return(sub?.GetType().GetProperty(CurrentSortKey).GetValue(sub, null));
 }