MailMessageVersion Property
Gets the current version of MailBee.NET Objects.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public string Version { get; }

Property Value

Type: String
A string containing the current version of MailBee.NET Objects (such as major.minor.build.revision).
Examples
This sample creates the new message and displays the version of MailBee.NET Objects.
using System;
using MailBee;
using MailBee.Mime;

class Sample
{
    static void Main(string[] args)
    {
        MailMessage msg = new MailMessage();
        Console.WriteLine("You are using MailBee.NET Objects v" + msg.Version);
    }

}
See Also