SymphonyElectron/installer/win/WixSharpToolset/Samples/Custom_UI/CustomCLRDialog/Utils.cs
2020-08-21 08:25:55 +02:00

14 lines
207 B
C#

using System;
using System.Windows.Forms;
namespace ExternalAsm
{
public class Utils
{
static public void Who()
{
MessageBox.Show("ExternalAsm.Utils");
}
}
}