Skip to content

Commit 856bb9f

Browse files
committed
Chore: last cleanups
1 parent 13961c5 commit 856bb9f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+813
-896
lines changed

src/ConsoleApplication/ActionEnum.cs

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,48 @@ namespace System.Net;
99
/// </summary>
1010
public enum ActionEnum
1111
{
12+
/// <summary>
13+
/// Prints usage.
14+
/// </summary>
1215
Usage,
16+
17+
/// <summary>
18+
/// Print networks.
19+
/// </summary>
1320
PrintNetworks,
21+
22+
/// <summary>
23+
/// Find a subnet.
24+
/// </summary>
1425
Subnet,
26+
27+
/// <summary>
28+
/// Find a supernet.
29+
/// </summary>
1530
Supernet,
31+
32+
/// <summary>
33+
/// Find a wide subnet.
34+
/// </summary>
1635
WideSupernet,
36+
37+
/// <summary>
38+
/// List IPAddress.
39+
/// </summary>
1740
ListIPAddress,
41+
42+
/// <summary>
43+
/// Check if network contains.
44+
/// </summary>
1845
ContainNetwork,
46+
47+
/// <summary>
48+
/// Check if network overlaps.
49+
/// </summary>
1950
OverlapNetwork,
51+
52+
/// <summary>
53+
/// Substract networks.
54+
/// </summary>
2055
SubtractNetwork,
2156
}

src/ConsoleApplication/ArgParsed.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace System.Net;
1010
public class ArgParsed
1111
{
1212
/// <summary>
13-
/// Position.
13+
/// Gets or sets position.
1414
/// </summary>
1515
public int Arg { get; set; }
1616

@@ -19,6 +19,8 @@ public class ArgParsed
1919
/// <summary>
2020
/// An arg has been parsed.
2121
/// </summary>
22+
/// <param name="ac">The context.</param>
23+
/// <param name="arg">The arg.</param>
2224
public delegate void ArgParsedDelegate(ProgramContext ac, string arg);
2325

2426
/// <summary>

src/ConsoleApplication/CidrParseTypeEnum.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ namespace System.Net;
99
/// </summary>
1010
public enum CidrParseEnum
1111
{
12+
/// <summary>
13+
/// Default value,
14+
/// </summary>
1215
Default,
16+
17+
/// <summary>
18+
/// The other.
19+
/// </summary>
1320
Value,
1421
}

0 commit comments

Comments
 (0)