unifpe
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
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