Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns an int representing the number of contiguous entries in this lst.

{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public ReadOnly Property NumEntries() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle