mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 15:35:35 +00:00
8 lines
227 B
Plaintext
8 lines
227 B
Plaintext
|
|
||
|
public void SetPopdownStrings (params string[] args) {
|
||
|
GLib.List list = new GLib.List (IntPtr.Zero, typeof (string));
|
||
|
foreach (string arg in args)
|
||
|
list.Append (Marshal.StringToHGlobalAnsi (arg));
|
||
|
PopdownStrings = list;
|
||
|
}
|