You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
807 B
27 lines
807 B
5 years ago
|
#if NET20 || NET30 || NET35 || !NET_4_6
|
||
|
|
||
|
// Copyright (c) Microsoft. All rights reserved.
|
||
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||
|
|
||
|
namespace System.Runtime.CompilerServices
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// An interface to represent values of runtime variables.
|
||
|
/// </summary>
|
||
|
public interface IRuntimeVariables
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Count of the variables.
|
||
|
/// </summary>
|
||
|
int Count { get; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// An indexer to get/set the values of the runtime variables.
|
||
|
/// </summary>
|
||
|
/// <param name="index">An index of the runtime variable.</param>
|
||
|
/// <returns>The value of the runtime variable.</returns>
|
||
|
object this[int index] { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|