Click or drag to resize
StringExtensionsRemoveAllWhitespace Method
Takes in a string and removes all whitespace in that string, regardless of its position. See http://stackoverflow.com/questions/6219454/efficient-way-to-remove-all-whitespace-from-string

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static string RemoveAllWhitespace(
	this string input
)

Parameters

input
Type: SystemString
The string to replace

Return Value

Type: String
The replaced string

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