This commit is contained in:
2025-12-30 15:43:10 +08:00
parent 955dab6e65
commit 7083653661
44 changed files with 1165 additions and 513 deletions
@@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Class SubList&lt;T&gt; | HiAPI-C# 2025 ">
<meta name="description" content="Represents a sub-list view of a source list within a specified index range.">
<link rel="icon" href="../img/HiAPI.favicon.ico">
<link rel="stylesheet" href="../public/docfx.min.css">
<link rel="stylesheet" href="../public/main.css">
@@ -97,7 +97,8 @@ Class SubList&lt;T&gt;
<dl><dt>Assembly</dt><dd>HiGeom.dll</dd></dl>
</div>
<div class="markdown summary"></div>
<div class="markdown summary"><p>Represents a sub-list view of a source list within a specified index range.</p>
</div>
<div class="markdown conceptual"></div>
<div class="codewrapper">
@@ -109,7 +110,8 @@ Class SubList&lt;T&gt;
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>T</code></dt>
<dd></dd>
<dd><p>The type of elements in the list.</p>
</dd>
</dl>
<dl class="typelist inheritance">
@@ -258,7 +260,8 @@ Class SubList&lt;T&gt;
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Initializes a new instance.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -268,11 +271,14 @@ Class SubList&lt;T&gt;
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>source</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1">IList</a>&lt;T&gt;</dt>
<dd></dd>
<dd><p>The source list.</p>
</dd>
<dt><code>beginIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dd><p>The starting index (inclusive).</p>
</dd>
<dt><code>endIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dd><p>The ending index (exclusive).</p>
</dd>
</dl>