GetHashCode

ProjectFileInfo.GetHashCode method

Returns a hash code value for the instance of the ProjectFileInfo class.

public override int GetHashCode()

Return Value

returns a hash code value for this object.

Examples

Shows how to read project file info.

var info = Project.GetProjectFileInfo(DataDir + "Project.xml");
Console.WriteLine("CanRead: " + info.CanRead);
Console.WriteLine("ProjectApplicationInfo: " + info.ProjectApplicationInfo);
Console.WriteLine("ProjectFileFormat: " + info.ProjectFileFormat);

See Also