Files
runner/src/Sdk/Expressions/Sdk/IReadOnlyArray.cs
2025-11-07 20:18:52 +00:00

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();
}
}