コード例 #1
0
ファイル: ExceptionsVM.cs プロジェクト: manojdjoshi/dnSpy
		ExceptionVM[] GetRemovableExceptions(ExceptionVM[] items) => items.Where(a => exceptionService.CanRemove(a.ExceptionInfo)).ToArray();
コード例 #2
0
ファイル: ExceptionsVM.cs プロジェクト: arkanoid1/dnSpy
		static ExceptionVM[] GetRemovableExceptions(ExceptionVM[] items) {
			return items.Where(a => ExceptionManager.Instance.CanRemove(a.ExceptionInfo)).ToArray();
		}