# Name

Represents a sequence of syllables that make up a name.

## Constructors

| Constructor                                      | Description                                    |
| ------------------------------------------------ | ---------------------------------------------- |
| Name()                                           | Creates an empty name with no syllables.       |
| Name(System.String\[] syllable)                  | Creates a new name with the desired syllables. |
| Name([Name](/syllabore/class-docs/name.md) copy) |                                                |

## Methods

| Method                         | Returns                               | Description                                                                                                                                                                                                                                                               |
| ------------------------------ | ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Append(System.String syllable) | [Name](/syllabore/class-docs/name.md) | Adds a new syllable to this name. Returns this instance of [Name](/syllabore/class-docs/name.md) for chaining.                                                                                                                                                            |
| Equals(System.Object obj)      | System.Boolean                        | Returns true if this [Name](/syllabore/class-docs/name.md) is equal to the specified [Name](/syllabore/class-docs/name.md). A [Name](/syllabore/class-docs/name.md) is equal to another [Name](/syllabore/class-docs/name.md) only if their string values are also equal. |
| GetHashCode()                  | System.Int32                          | Returns a hash code for this [Name](/syllabore/class-docs/name.md).                                                                                                                                                                                                       |
| ToString()                     | System.String                         | Sequences the syllables of this [Name](/syllabore/class-docs/name.md) into a single string, capitalizes it, and returns it.                                                                                                                                               |

## Properties

| Property  | Type                                             | Description                                   |
| --------- | ------------------------------------------------ | --------------------------------------------- |
| Syllables | System.Collections.Generic.List \<System.String> | The ordered syllables that make up this name. |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sacro.gitbook.io/syllabore/class-docs/name.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
