Gets the name parts.
'Declaration
Public Shared Function GetNameParts( _
ByVal As String, _
ByRef As String, _
ByRef As String, _
ByRef As String _
) As Boolean
'Usage
Dim name As String
Dim first As String
Dim last As String
Dim middle As String
Dim value As Boolean
value = Utils.GetNameParts(name, first, last, middle)
public static bool GetNameParts(
string ,
out string ,
out string ,
out string
)
public function GetNameParts(
: String;
Out : String;
Out : String;
Out : String
): Boolean; static;
public static function GetNameParts(
: String,
: String,
: String,
: String
) : boolean;
public: static bool GetNameParts(
string* ,
[PARAMFLAG::Out] string* ,
[PARAMFLAG::Out] string* ,
[PARAMFLAG::Out] string*
)
public:
static bool GetNameParts(
String^ ,
[Out] String^ ,
[Out] String^ ,
[Out] String^
)
Parameters
- name
- The name.
- first
- The first.
- last
- The last.
- middle
- The middle.
Return Value
true
if XXXX, false
otherwise.