Group
Using Additional Libraries in C#
Objective
1. Use Environment.MachineName to get the computer's name.
2. Use Environment.UserDomainName to get the domain name.
3. Use Environment.UserName to get the username of the currently logged-in user.
4. Display these details in a user-friendly format on the console.
Create a program that shows specific system details, including the computer name, domain name, and the username of the user who is currently logged in.
Example C# Exercise
Show C# Code
using System; // Importing the System namespace to access Environment properties
class Program
{
static void Main()
{
// Getting the machine name (computer's name)
string computerName = Environment.MachineName;
// Getting the domain name the machine is part of
string domainName = Environment.UserDomainName;
// Getting the username of the current logged-in user
string userName = Environment.UserName;
// Display the information to the user
Console.WriteLine("System Details:");
Console.WriteLine($"Computer Name: {computerName}");
Console.WriteLine($"Domain Name: {domainName}");
Console.WriteLine($"Logged-in User: {userName}");
}
}
Output
System Details:
Computer Name: MY-COMPUTER
Domain Name: MY-DOMAIN
Logged-in User: johndoe