Stopwatch will not show time.

Hi!
I am a bit new to unity and I have a stopwatch added to my game based on @freezing_ example. The Issue I’m having is when the game is finished and I have it show the time, The “Your Time” bit will show but the actual time will not.
Here is where I’m having the issue.

void SetCountText ()
	{
		countText.text = "Count: " + count.ToString ();
		if (count >= 12) 
		{
			winText.text = "You Win!";
			timer.Stop ();
			finishTime.text = "Your Time: " + timer.ToString ();
		}
	}

Thanks for your help!
,

Try the Elapsed property or equivalent.

finishTime.text = "Your Time: " + timer.Elapsed.ToString ();

https://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396

https://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.elapsed(v=vs.110).aspx