System.Windows.Forms.XplatUIX11.unixtime C# (CSharp) Method

unixtime() private method

private unixtime ( ) : int
return int
		private int unixtime() {
			TimeSpan t = (DateTime.UtcNow - new DateTime(1970, 1, 1));

			return (int) t.TotalSeconds;
		}
XplatUIX11