I have the code below that was provided as the hMailServer DCOM API at http://www.hmailserver.com/documentation/latest/?page=com_example_account_create The below script works fine. He doesn't say anything. Immediately after installing hMailServer, running the code below can create an account. Now I need the same in C #. They did not provide me with any library for C # that I was looking for for it, but I have no relevant results, but below, according to the hMailServer API, they can convert the below script to any language you want. But how? I don’t even understand how to start writing even the first line. Someone please help me.
Dim obApp
Set obApp = CreateObject("hMailServer.Application")
' Authenticate. Without doing this, we won't have permission
' to change any server settings or add any objects to the
' installation.
Call obApp.Authenticate("Administrator", "your-main-hmailserver-password")
' Locate the domain we want to add the account to
Dim obDomain
Set obDomain = obApp.Domains.ItemByName("example.com")
Dim obAccount
Set obAccount = obDomain.Accounts.Add
' Set the account properties
obAccount.Address = "account@example.com"
obAccount.Password = "secret"
obAccount.Active = True
obAccount.MaxSize = 100 ' Allow max 100 megabytes
obAccount.Save