Show / Hide Table of Contents

Class EnvironmentVariable

Inheritance
Object
EnvironmentVariable
Implements
IEquatable<EnvironmentVariable>
Namespace: BenchmarkDotNet.Jobs
Assembly: BenchmarkDotNet.dll
Syntax
public class EnvironmentVariable : IEquatable<EnvironmentVariable>

Constructors

EnvironmentVariable(String, String)

Declaration
public EnvironmentVariable(string key, string value)
Parameters
Type Name Description
String key
String value

Properties

Key

Declaration
public string Key { get; }
Property Value
Type Description
String

Value

Declaration
public string Value { get; }
Property Value
Type Description
String

Methods

Equals(EnvironmentVariable)

Declaration
public bool Equals(EnvironmentVariable other)
Parameters
Type Name Description
EnvironmentVariable other
Returns
Type Description
Boolean

Equals(Object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
Object obj
Returns
Type Description
Boolean
Overrides
Object.Equals(Object)

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
Int32
Overrides
Object.GetHashCode()

ToString()

Declaration
public override string ToString()
Returns
Type Description
String
Overrides
Object.ToString()

Implements

System.IEquatable<T>
In This Article
Back to top Copyright © 2013–2021 .NET Foundation and contributors