mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-07-04 14:18:28 +00:00
use new simpler overload for .Append in example
svn path=/trunk/gtk-sharp/; revision=17417
This commit is contained in:
parent
350fd53fa7
commit
5a4d16db8b
|
@ -57,7 +57,7 @@ class ComboSample
|
||||||
|
|
||||||
for (int i =0; i < 5; i++)
|
for (int i =0; i < 5; i++)
|
||||||
{
|
{
|
||||||
l.Append (Marshal.StringToHGlobalAnsi("String " + i));
|
l.Append ("String " + i);
|
||||||
}
|
}
|
||||||
|
|
||||||
combo = new Combo ();
|
combo = new Combo ();
|
||||||
|
|
Loading…
Reference in a new issue