Processing Ajax...

Title

Message

Confirm

Confirm

Confirm

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure?

C# Language Test: 6.0

Description
C# language tests for v6.0.
Language
C#.net
Minimum Version
Created By
Jon Tackabury (BFS)
Contributors
-
Date Created
Mar 21, 2022
Date Last Modified
Mar 21, 2022

Scripted Function (Macro) Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
	public static string Value => "Value!";
	
	public static void Run(IntPtr windowHandle)
	{
		string result = Test("Test!")?.ToString() ?? "";
	}
	
	private static string? Test(string param1)
	{
		return nameof(param1);
	}
}