[This is preliminary documentation and is subject to change.]
Universal delegate of procedure with no argument
Namespace: ToolsAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
[EditorBrowsableAttribute(EditorBrowsableState.Never)] [ObsoleteAttribute("Use System.Action instead")] public delegate void dSub() |
| Visual Basic |
|---|
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _ <ObsoleteAttribute("Use System.Action instead")> _ Public Delegate Sub dSub |
| Visual C++ |
|---|
[EditorBrowsableAttribute(EditorBrowsableState::Never)] [ObsoleteAttribute(L"Use System.Action instead")] public delegate void dSub() |
| F# |
|---|
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>] [<ObsoleteAttribute("Use System.Action instead")>] type dSub = delegate of unit -> unit |
| JScript |
|---|
|