• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lduchosal / ipnetwork / 960

15 May 2026 07:18AM UTC coverage: 0.0% (-94.1%) from 94.053%
960

Pull #411

appveyor

web-flow
Merge ef6b054ce into 4cec191ae
Pull Request #411: Bump MSTest.TestFramework from 4.2.2 to 4.2.3

0 of 2438 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/System.Net.IPNetwork/IPNetwork2.cs
1
// <copyright file="IPNetwork2.cs" company="IPNetwork">
2
// Copyright (c) IPNetwork. All rights reserved.
3
// </copyright>
4

5
namespace System.Net;
6

7
using System.Runtime.Serialization;
8

9
/// <summary>
10
/// IP Network utility class.
11
/// Use IPNetwork.Parse to create instances.
12
/// </summary>
13
[Serializable]
14
[CLSCompliant(true)]
15
public sealed partial class IPNetwork2 : ISerializable
16
{
17
    /// <summary>
18
    /// Returns a string representation of the object.
19
    /// </summary>
20
    /// <returns>
21
    /// A string representation of the object which includes the Network and Cidr values separated by a "/".
22
    /// </returns>
23
    public override string ToString()
24
    {
×
25
        return $"{this.Network}/{this.Cidr}";
×
26
    }
×
27
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc