Declaration


public DateTime TimestampAsDateTime { get; }

Description


Gets the exact timestamp that the last build was made as a datetime.

Example


private void OnEnable()
{
		var buildInfo = AssetAccessor.GetAsset<BuildInformation>();
		Debug.Log(buildInfo.TimestampAsDateTime);
}