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