Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NewestOrder.cs
1using System.Collections.Generic;
2
4{
8 public class NewestOrder : IComparer<MatchInformation>
9 {
13 public NewestOrder()
14 {
15 }
16
21 {
22 return y.Timestamp.CompareTo(x.Timestamp);
23 }
24 }
25}
Contains matching information about a document in a search.
Orders entries from newest to oldest.
Definition: NewestOrder.cs:9
int Compare(MatchInformation x, MatchInformation y)
IComparer<MatchInformation>.Compare
Definition: NewestOrder.cs:20
NewestOrder()
Orders entries from newest to oldest.
Definition: NewestOrder.cs:13