Dev2.Data.Binary_Objects.IndexList.GetMinIndex C# (CSharp) Method

GetMinIndex() public method

public GetMinIndex ( ) : int
return int
        public int GetMinIndex()
        {
            int result = MinValue;
            while(Gaps.Contains(result))
            {
                result++;
            }

            return result;
        }

Usage Example

 public int MinIndex()
 {
     return IndexList.GetMinIndex();
 }