Table of Contents

Delegate VoidBoolNullableObject

Namespace
SunamoDelegates
Assembly
SunamoDelegates.dll

Represents a method that takes a nullable boolean and an object parameter, and returns void.

public delegate void VoidBoolNullableObject(bool? isEnabled, object parameter)

Parameters

isEnabled bool?

The nullable boolean value indicating enabled state.

parameter object

The object parameter.

Extension Methods