Skip to content

Commit

Permalink
feat: csharp quick demo
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 17, 2023
1 parent ad32388 commit c5941d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/csharp/WpfApp/WpfApp/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c5941d2

Please sign in to comment.