Skip to content
This repository was archived by the owner on Nov 1, 2020. It is now read-only.
This repository was archived by the owner on Nov 1, 2020. It is now read-only.

CoreLib doesn't implement Environment.GetEnvironmentVariable and friends #6

@MichalStrehovsky

Description

@MichalStrehovsky

GetEnvironmentVariable and ExpandEnvironment are implemented like this:

public static String GetEnvironmentVariable(String variable)
{
    if (variable == null)
        throw new ArgumentNullException("variable");

    // Environment variable accessors are not approved modern API.
    // Behave as if the variable was not found in this case.
    return null;
}

We need real implementations.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions