Microsoft.Protocols.TestSuites.Common.Common.GetMailAddress C# (CSharp) Method

GetMailAddress() public static method

Get mailbox by user name and domain.
public static GetMailAddress ( string userName, string domain ) : string
userName string The user name.
domain string The domain in which the user is.
return string
        public static string GetMailAddress(string userName, string domain)
        {
            return string.Format(@"{0}@{1}", userName, domain);
        }
Common