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
12 lines
471 B
C#
12 lines
471 B
C#
namespace CrossPlatformClientExe;
|
|
|
|
internal class NullInteropFunctions : IInteropFunctions
|
|
{
|
|
public NullInteropFunctions(params object[] values) { }
|
|
|
|
public string TransformInit1() => throw new PlatformNotSupportedException();
|
|
public int TransformInit2() => throw new PlatformNotSupportedException();
|
|
public void CopyTextToClipboard(string text) => throw new PlatformNotSupportedException();
|
|
public void ShowForm() => throw new PlatformNotSupportedException();
|
|
}
|