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 that represents the number of characters in this Element.

{signature}
{example}{code:csharp|title=C#}

          int length = e.Length;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim length As Integer = e.Length
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns an {{int}} that represents the number of characters in this Element.{excerpt}
{signature:C#}
 public int Length{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Length() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle