Adds an enum entry to the end of an enum. This method is quite slow, it copies all old entries, adds the new one and commits it back to the host.

Namespace: VVVV.PluginInterfaces.V2
Assembly: VVVV.PluginInterfaces (in VVVV.PluginInterfaces.dll) Version: 2.0.4694.10872

Syntax

C#
public static void AddEntry(
	string enumName,
	string entryName
)

Parameters

enumName
Type: System..::..String
The enums name.
entryName
Type: System..::..String
The new enum entry.

See Also