Home »
.Net »
C# Programs
C# - Environment.UserDomainName Property with Example
In this tutorial, we will learn about the C# Environment.UserDomainName property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
Environment.UserDomainName Property
The Environment.UserDomainName property returns a string value that contains the network domain name.
Syntax
string Environment.UserDomainName
Parameter(s)
Return Value
Returns a 'string' value.
C# Example of Environment.UserDomainName Property
The source code to get the Network Domain name associated with current using Environment class is given below. The given program is compiled and executed successfully.
using System;
class Sample {
//Entry point of Program
static public void Main() {
string UserDomainName = "";
UserDomainName = Environment.UserDomainName;
Console.WriteLine("Network domain name associated with the current user: "
+ UserDomainName);
}
}
Output
Network domain name associated with the current user: Arvind-PC
Press any key to continue . . .
C# Environment Class Programs »