StringExtensionsBubbleSort Method
Sorts the source IEnumerableT by BubbleSort method.
Namespace: DevCase.Extensions.StringExtensionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static IEnumerable<string> BubbleSort(
this IEnumerable<string> sender
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function BubbleSort (
sender As IEnumerable(Of String)
) As IEnumerable(Of String)
Dim sender As IEnumerable(Of String)
Dim returnValue As IEnumerable(Of String)
returnValue = sender.BubbleSort()
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static IEnumerable<String^>^ BubbleSort(
IEnumerable<String^>^ sender
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member BubbleSort :
sender : IEnumerable<string> -> IEnumerable<string>
No code example is currently available or this language may not be supported.
- sender IEnumerableString
-
The source collection.
IEnumerableString
The resulting
IEnumerableT.
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableString. 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).
This is a code example.
No code example is currently available or this language may not be supported.
Dim col As IEnumerable(Of String) = {"10", "333", "2", "45"}
Debug.WriteLine(String.Join(", ", col.BubbleSort))
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.