Gets the phrases from the provided text.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static string[] GetPhrases(
	this string text
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function GetPhrases ( 
	text As String
) As String()
Visual C++
public:
[ExtensionAttribute]
static array<String^>^ GetPhrases(
	String^ text
)
F#
static member GetPhrases : 
        text : string -> string[] 

Parameters

text
Type: System..::..String
Text to parse.

Return Value

Type: array<String>[]()[][]
Phrase list.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also