Ejemplo:
Código:
SqlConnection sqlConexion = null;
SqlDataReader rs = null;
SqlCommand sqlComando = null;
sqlConexion = new SqlConnection((String) strConexion);
sqlComando = new SqlCommand();
sqlConexion.Open();
sqlComando.Connection = sqlConexion;
sqlComando.CommandText = "SP_Insertar '" + parametro1 + "','" + parametro2 + "','" + parametro3 + "'," + parametro4_Int + "','" + parametro5 + "'";
En donde
strConexion es el string de conexion a tu BD,
Espero haber ayudado!
Saludos!