mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-25 02:13:27 -04:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
16 lines
425 B
C#
16 lines
425 B
C#
namespace CrossPlatformClientExe;
|
|
|
|
class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main()
|
|
{
|
|
var interopInstance = new OSInteropProxy("this IS SOME text", 42);
|
|
|
|
Console.WriteLine("X-Formed Value 1: {0}", interopInstance.TransformInit1());
|
|
Console.WriteLine("X-Formed Value 2: {0}", interopInstance.TransformInit2());
|
|
|
|
interopInstance.ShowForm();
|
|
interopInstance.CopyTextToClipboard("This is copied text!");
|
|
}
|
|
} |