GetHashCode

Task.GetHashCode method

Returns a hash code value for this Task.

public override int GetHashCode()

Return Value

returns a hash code value for this object.

Examples

Shows how to get a hash code of a task.

var project = new Project();

var task = project.RootTask.Children.Add("Task");

// the hash code of a task is based on task's uid and name
Console.WriteLine("Hash code of the task: " + task.GetHashCode());

task.Set(Tsk.Name, "Task 1");

Console.WriteLine("Hash code of the task: " + task.GetHashCode());

See Also