コード例 #1
0
 public static string ToFioSafe(this TDMSUser user)
 {
     try {
         return(ToFio(user));
     }
     catch (Exception) {
         return(string.Empty);
     }
 }
コード例 #2
0
 public static string ToFio(this TDMSUser user)
 {
     return($"{user.FirstName} " +
            $"{user.MiddleName} " +
            $"{user.LastName}");
 }