Lines Matching refs:second
64 public static bool operator <(LogLevel first, LogLevel second) in operator <() argument
66 return first.type < second.type; in operator <()
69 public static bool operator <=(LogLevel first, LogLevel second) in operator <=() argument
71 return first.type <= second.type; in operator <=()
74 public static bool operator >(LogLevel first, LogLevel second) in operator >() argument
76 return first.type > second.type; in operator >()
79 public static bool operator >=(LogLevel first, LogLevel second) in operator >=() argument
81 return first.type >= second.type; in operator >=()
84 public static bool operator ==(LogLevel first, LogLevel second) in operator ==() argument
86 if(Object.ReferenceEquals(null, first) ^ Object.ReferenceEquals(null, second)) in operator ==()
88 if(Object.ReferenceEquals(null, first) && Object.ReferenceEquals(null, second)) in operator ==()
92 return first.type == second.type; in operator ==()
95 public static bool operator !=(LogLevel first, LogLevel second) in operator !=() argument
97 return !(first == second); in operator !=()