Selerix Developer Tools
GetNameParts Method






Selerix.Foundation Assembly > Selerix.Foundation.Data Namespace > Utils Class : GetNameParts Method
The name.
The first.
The last.
The middle.
Gets the name parts.
Syntax
'Declaration
 
Public Shared Function GetNameParts( _
   ByVal name As String, _
   ByRef first As String, _
   ByRef last As String, _
   ByRef middle 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 name,
   out string first,
   out string last,
   out string middle
)
public function GetNameParts( 
    name: String;
   Out  first: String;
   Out  last: String;
   Out  middle: String
): Boolean; static; 
public static function GetNameParts( 
   name : String,
   first : String,
   last : String,
   middle : String
) : boolean;
public: static bool GetNameParts( 
   string* name,
   [PARAMFLAG::Out] string* first,
   [PARAMFLAG::Out] string* last,
   [PARAMFLAG::Out] string* middle
) 
public:
static bool GetNameParts( 
   String^ name,
   [Out] String^ first,
   [Out] String^ last,
   [Out] String^ middle
) 

Parameters

name
The name.
first
The first.
last
The last.
middle
The middle.

Return Value

true if XXXX, false otherwise.
See Also

Reference

Utils Class
Utils Members