How to use String format with the VS interfaces



   private void textBox15_TextChanged(object sender, EventArgs e)
        {
           string txt=string.format("%{0}%",textbox15.Text);


//then pass the txt variable to your method and you can have any searching with that variable
        }

Comments

Popular Posts