C# - Environment.UserName Property with Example

In this tutorial, we will learn about the C# Environment.UserName property with its definition, usage, syntax, and example. By Nidhi Last updated : March 30, 2023

Environment.UserName Property

The Environment.UserName property returns a string value that contains the computer system user name.

Syntax

string Environment.UserName

Parameter(s)

  • None

Return Value

Returns a 'string' value.

C# Example of Environment.UserName Property

The source code to get the Computer System User Name 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 username = "";

        username = Environment.UserName;
        Console.WriteLine("Computer System User Name: " +username);
    }
}

Output

Computer System User Name: Nidhi
Press any key to continue . . .

C# Environment Class Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.