mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-08 23:23:02 -06:00
14 lines
207 B
C#
14 lines
207 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ExternalAsm
|
|
{
|
|
public class Utils
|
|
{
|
|
static public void Who()
|
|
{
|
|
MessageBox.Show("ExternalAsm.Utils");
|
|
}
|
|
}
|
|
}
|