> ## Documentation Index
> Fetch the complete documentation index at: https://cdktn.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# CSharp: LazyAnyValueOptions

> CDKTN Core API Reference for LazyAnyValueOptions in CSharp.

Options for creating lazy untyped tokens.

## Initializer <a name="Initializer" id="cdktn.LazyAnyValueOptions.Initializer" />

```csharp theme={null}
using Io.Cdktn;

new LazyAnyValueOptions {
    string DisplayHint = null,
    bool OmitEmptyArray = null
};
```

## Properties <a name="Properties" id="Properties" />

| **Name**                                                                                     | **Type**            | **Description**                                                                |
| -------------------------------------------------------------------------------------------- | ------------------- | ------------------------------------------------------------------------------ |
| <code><a href="#cdktn.LazyAnyValueOptions.property.displayHint">DisplayHint</a></code>       | <code>string</code> | Use the given name as a display hint.                                          |
| <code><a href="#cdktn.LazyAnyValueOptions.property.omitEmptyArray">OmitEmptyArray</a></code> | <code>bool</code>   | If the produced value is an array and it is empty, return 'undefined' instead. |

***

### `DisplayHint`<sup>Optional</sup> <a name="DisplayHint" id="cdktn.LazyAnyValueOptions.property.displayHint" />

```csharp theme={null}
public string DisplayHint { get; set; }
```

* *Type:* string
* *Default:* No hint

Use the given name as a display hint.

***

### `OmitEmptyArray`<sup>Optional</sup> <a name="OmitEmptyArray" id="cdktn.LazyAnyValueOptions.property.omitEmptyArray" />

```csharp theme={null}
public bool OmitEmptyArray { get; set; }
```

* *Type:* bool
* *Default:* false

If the produced value is an array and it is empty, return 'undefined' instead.

***
