• 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/IPNetwork2GetHashCode.cs
1
// <copyright file="IPNetwork2GetHashCode.cs" company="IPNetwork">
2
// Copyright (c) IPNetwork. All rights reserved.
3
// </copyright>
4

5
namespace System.Net;
6

7
/// <summary>
8
/// GetHashcode.
9
/// </summary>
10
public sealed partial class IPNetwork2
11
{
12
    /// <inheritdoc />
13
    public override int GetHashCode()
14
    {
×
15
        return this.cachedHashCode.Value;
×
16
    }
×
17

18
    private int ComputeHashCode()
19
    {
×
20
        int hash = 17;
×
21
        hash = (hash * 31) + this.family.GetHashCode();
×
22
        hash = (hash * 31) + this.InternalNetwork.GetHashCode();
×
23
        hash = (hash * 31) + this.cidr.GetHashCode();
×
24
        return hash;
×
25
    }
×
26
}
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