Posts

Showing posts with the label System.Environment

System.Environment

Image
Environment class allows you to obtain a number of details regarding the operating system currently hosting your .NET application using various static members. To illustrate the usefulness of System.Environment, update your Main() method to call a helper method named EnvironmentDetails() . Properties Meaning ExitCode Gets or sets the exit code for the application Is64BitOperatingSystem Returns a bool to represent whether the host machine is running a 64-bit OS MachineName Gets the name of the current machine NewLine Gets the newline symbol for the current environment SystemDirectory Returns the full path to the system directory UserName Returns the name of the user that started this application Version Returns a Version object that represents the version of the .NET platform Create EnvironmentDetails() method in class under Main() method and call this method in Main() method. Program ...