GetRegString(String,String) Method
In This Topic
Returns the value of a cached key with default value
Syntax
'Declaration
Public Overloads Shared Function GetRegString( _
ByVal As System.String, _
ByVal As System.String _
) As System.String
'Usage
Dim Name As System.String
Dim Default As System.String
Dim value As System.String
value = DicomGlobal.GetRegString(Name, Default)
public static System.string GetRegString(
System.string ,
System.string
)
public function GetRegString(
: System.String;
: System.String
): System.String; static;
public static function GetRegString(
: System.String,
: System.String
) : System.String;
public: static System.string* GetRegString(
System.string* ,
System.string*
)
public:
static System.String^ GetRegString(
System.String^ ,
System.String^
)
Parameters
- Name
The name of the registry key.
- Default
The default return value.
Return Value
string
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also