Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 291 Bytes

20181121.三目运算符使用.md

File metadata and controls

9 lines (9 loc) · 291 Bytes
public NodeOSDownloadData GetCurrentOSDownloadData()
{
	return RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? Windows :
	RuntimeInformation.IsOSPlatform(OSPlatform.Linux) ? Linux :
	RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? Mac :
	throw new NotSupportedException();
}