How to get Caller ID in C#?

前端 未结 3 1330
我在风中等你
我在风中等你 2020-12-30 10:53

I want to use 56K modem for getting telephone number of who calls the home phone. Is there a way to achieve this with C# ?

3条回答
  •  生来不讨喜
    2020-12-30 11:25

    serialPort1.Open(); serialPort1.WriteLine("AT#cid=1" + System.Environment.NewLine); // where serialPort1 is the serial control for more detail see following link : http://www.itworld2.com/frmsCsharp.aspx

提交回复
热议问题