The About property gets a string value that contains information about the
version of mCore™ .NET SMS Library and the license type.
Namespace: mCore
Assembly: mCoreLib (in mCoreLib.dll)
| Visual Basic |
| Public Class MyClass Public WithEvents objSMS As New mCore.SMS Public Sub mCoreAbout() Dim strAbout As String = objSMS.About MsgBox(strAbout) End Sub End Class |
| C# |
| class MyClass { public mCore.SMS objSMS = new mCore.SMS(); public void mCoreAbout() { string strAbout = objSMS.About; |