Click or drag to resize

ConcurrentScriptCompilerResultDictionaryTryGetValue(Assembly, ScriptCompilerSuccessfulResult) Method

Tries to get a compilation result from an existing assembly.

Namespace: Altaxo.Main.Services.ScriptCompilation
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool TryGetValue(
	Assembly assembly,
	out ScriptCompilerSuccessfulResult result
)

Parameters

assembly  Assembly
The compiled assembly.
result  ScriptCompilerSuccessfulResult
Returns the compilation result corresponding to the assembly (always a successful compilation result).

Return Value

Boolean
True if the compulation result corresponding to this assembly could be found, otherwise, false.
See Also