Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Returns an {{int}} representing the number of contiguous entries in this lst.{excerpt}
{signature:C#}
 public int NumEntries{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property NumEntries() As Integer
{signature}
{example}{code:csharp|title=C#}

          int numEntries = lst.NumEntries;
        {code}
{code:vb.net|title=vb.net}

          Dim numEntries As Integer = lst.NumEntries
        {code}

{example}