unifpe
unifpe
CC#
Created by unifpe on 11/25/2024 in #help
Aggregate debug info of vscode debugger hover into another server
Thank you, this is what i was looking for
4 replies
CC#
Created by unifpe on 11/25/2024 in #help
Aggregate debug info of vscode debugger hover into another server
I think i could be javascript related as one could access devtools in vscode and do some manipulation from there, however if there is some standard way of sending information it would be great
4 replies
CC#
Created by unifpe on 7/3/2024 in #help
Distinct List in List of Lists
?
6 replies
CC#
Created by unifpe on 7/3/2024 in #help
Distinct List in List of Lists
How to do this for generic real number type using numeric types
6 replies
CC#
Created by unifpe on 7/3/2024 in #help
Distinct List in List of Lists
public class ListComparer : IEqualityComparer<List<long>> { public bool Equals(List<long> x, List<long> y) { if (x.Count != y.Count) return false; for (int i = 0; i < x.Count; i++) if (x[i] != y[i]) return false; return true; } public int GetHashCode(List<long> x) => x.Count; }
6 replies
CC#
Created by unifpe on 7/3/2024 in #help
Distinct List in List of Lists
I need this only for numeric values
6 replies