How do I delete a user in Hotspot using C#

How do I delete a user in Hotspot using C# & Using class in this URL http://wiki.mikrotik.com/wiki/API_in_C_Sharp

i Write This Code :

                mikrotik.Send("/ip/hotspot/user/remove",false);
                mikrotik.Send("=.id=" + dataGridView1.Rows[r].Cells[0].Value, true);

                foreach (string h in mikrotik.Read())
                MessageBox.Show(h);

Return !done But Don’t Remove User ?!

I am tired please help me !!

This C# client automatically ends the word when a second argument is specified, REGARDLESS of its value.

So, change

mikrotik.Send("/ip/hotspot/user/remove",false);

to

mikrotik.Send("/ip/hotspot/user/remove");

Thanks Good Answer ..

Is Done ..

Thanks Good Answer ..

is Done ..