Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 현재 Decimal 인스턴스에 대한 해시 코드 가져오기

<시간/>

현재 Decimal 인스턴스에 대한 해시 코드를 얻으려면 코드는 다음과 같습니다 -

예시

using System;
public class Demo {
   public static void Main(){
      Decimal val = 135269.38193M;
      Console.WriteLine("Decimal Value = {0}", val);
      Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Decimal Value = 135269.38193
HashCode = 1328665595

예시

이제 다른 예를 살펴보겠습니다 -

using System;
public class Demo {
   public static void Main(){
      Decimal val = Decimal.MaxValue;
      Console.WriteLine("Decimal Value = {0}", val);
      Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Decimal Value = 79228162514264337593543950335
HashCode = 1173356544