Update README.md

This commit is contained in:
yardenshafir
2022-10-27 13:24:37 -04:00
committed by GitHub
parent 6ab5b6a9d0
commit bf3a316abe
+5
View File
@@ -7,6 +7,11 @@ https://medium.com/@yardenshafir2/windbg-the-fun-way-part-1-2e4978791f9b </br>
https://medium.com/@yardenshafir2/windbg-the-fun-way-part-2-7a904cba5435
## Useful Commands and Syntax
- <b>__iserror(x)</b>
Returns true if a statement throws an error.
```
dx @$curprocess.Io.Handles.Where(h => !__iserror(h.Type == "File") && h.Type == "File")
```
- <b>SelectMany</b>
Flattens a nested collection, for example runs a query on all threads in all processes and flattens the results