Esempio n. 1
0
 /// <summary>
 /// Calculates if this server version is greater than or equal to the supplied <paramref name="version"/>
 /// </summary>
 /// <param name="version">Version to test compatibility against</param>
 /// <returns>True if the server version is greater than or equal to the supplied <paramref name="version"/></returns>
 public bool IsCompatible(DhcpServerVersions version) => ((long)version <= (long)Version);
Esempio n. 2
0
 public bool IsCompatible(DhcpServerVersions Version)
 {
     return((long)Version <= (long)this.Version);
 }