PeerCastStation.WPF.BroadcastInfoViewModel.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int
    public override int GetHashCode()
    {
      return (int)(new object[] {
        StreamType,
        StreamUrl,
        Bitrate,
        ContentType,
        YellowPage,
        ChannelName,
        Genre,
        Description,
        Comment,
        ContactUrl,
        TrackTitle,
        TrackAlbum,
        TrackArtist,
        TrackGenre,
        TrackUrl,
      }.Select(o => (long)(o==null ? 0 : o.GetHashCode()))
       .Sum() % Int32.MaxValue);
    }