Returns a hash code of current Asset object.
SYNTAX
public override int GetHashCode ()
RETURN
int Returns a hash code
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace GetHashCodeExamples { public class GetHashCodeExamples : NETStrategy { public override void OnQuote() { Account acc = Accounts.Current; Print(acc.GetHashCode().ToString()); } } }