I want to send sms with c#.
no anybody help me?

Depending on the carrier, you can use a pre-built Web Service that sends SMS messages for instance: //http://www.webservicex.net/sendsmsworld.asmx

using DW_SendSmsWeb.WS_WebServiceX;
//http://www.webservicex.net/sendsmsworld.asmx
namespace DW_SendSmsWeb
{
   class Program
   {
      static void Main(string[] args)
      {
         SendSMSWorld svc = new SendSMSWorld();
         svc.sendSMS("fred@fred.com", "USA", "2125551212", "MessageGoesHere");
      }
   }
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.