Divides the specified string version of an identifier into a set of formatted identifier parts by using the identifier separator character.
Namespace: Microsoft.VisualStudio.Data.Framework.AdoDotNet
Assembly: Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)
Syntax
'宣言
Protected Overrides Function SplitIntoParts ( _
typeName As String, _
identifier As String _
) As String()
'使用
Dim typeName As String
Dim identifier As String
Dim returnValue As String()
returnValue = Me.SplitIntoParts(typeName, _
identifier)
protected override string[] SplitIntoParts(
string typeName,
string identifier
)
protected:
virtual array<String^>^ SplitIntoParts(
String^ typeName,
String^ identifier
) override
protected override function SplitIntoParts(
typeName : String,
identifier : String
) : String[]
Parameters
typeName
Type: System.StringThe name of an object type.
identifier
Type: System.StringThe identifier to split into parts.
Return Value
Type: []
An array of string values representing each an identifier extracted from the input string.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
AdoDotNetObjectIdentifierConverter Class