From c5941d22c0f0ebf4972f500796e557f2e716b2c9 Mon Sep 17 00:00:00 2001 From: "dengyucheng@finogeeks.com" Date: Fri, 17 Nov 2023 13:47:54 +0800 Subject: [PATCH] feat: csharp quick demo --- examples/csharp/WpfApp/WpfApp/MainWindow.xaml.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/csharp/WpfApp/WpfApp/MainWindow.xaml.cs b/examples/csharp/WpfApp/WpfApp/MainWindow.xaml.cs index 9616680..833c1d9 100644 --- a/examples/csharp/WpfApp/WpfApp/MainWindow.xaml.cs +++ b/examples/csharp/WpfApp/WpfApp/MainWindow.xaml.cs @@ -32,10 +32,10 @@ public partial class MainWindow : Window public static extern Int32 finclip_init_with_config([MarshalAs(UnmanagedType.LPUTF8Str)] string a, IntPtr config); [DllImport("FinClipSDKWrapper.dll", SetLastError = true)] public static extern Int32 finclip_start_applet([MarshalAs(UnmanagedType.LPUTF8Str)] string app_store, [MarshalAs(UnmanagedType.LPUTF8Str)] string appid); - private string DOMAIN; - private string APP_KEY; - private string SECRET; - private string APPID; + private string DOMAIN = ""; + private string APP_KEY = ""; + private string SECRET = ""; + private string APPID = ""; private string appstore = "test"; private void OnLoaded(object sender, RoutedEventArgs routedEventArgs)