#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
{
///
/// An interface to represent values of runtime variables.
///
public interface IRuntimeVariables
{
///
/// Count of the variables.
///
int Count { get; }
///
/// An indexer to get/set the values of the runtime variables.
///
/// An index of the runtime variable.
/// The value of the runtime variable.
object this[int index] { get; set; }
}
}
#endif