mirror of
https://github.com/actions/runner.git
synced 2025-12-13 00:36:29 +00:00
15 lines
247 B
C#
15 lines
247 B
C#
using System;
|
|
using System.Collections;
|
|
|
|
namespace GitHub.Actions.Expressions.Sdk
|
|
{
|
|
public interface IReadOnlyArray
|
|
{
|
|
Int32 Count { get; }
|
|
|
|
Object this[Int32 index] { get; }
|
|
|
|
IEnumerator GetEnumerator();
|
|
}
|
|
}
|