Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix mixed up xmldocs on constructors
  • Loading branch information
gregmac committed Jun 17, 2015
commit b3a67d1f8545f5f17dfecd0a0b8e620808b50c29
5 changes: 4 additions & 1 deletion IPAddressRange/IPAddressRange.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ public class IPAddressRange : ISerializable, IEnumerable<IPAddress>

public IPAddress End { get; set; }

/// <summary>
/// Creates an empty range object, equivalent to "0.0.0.0/0".
/// </summary>
public IPAddressRange() : this(new IPAddress(0L)) { }

/// <summary>
/// Creates an empty range object, equivalent to "0.0.0.0/0".
/// Creates a new range with the same start/end address (range of one)
/// </summary>
/// <param name="singleAddress"></param>
public IPAddressRange(IPAddress singleAddress)
Expand Down