コード例 #1
0
 public void RegisterUser(string username, string password, string email)
 {
     DelightServiceClient service = new DelightServiceClient();
     service.RegisterUser(username, password, email);
     service.Close();
 }