/// //////// query. it will double up single quotes, and return the support /// String Wrapped in single quotes. Eg the string "Steve's a guy" /// Will be returned as "'steve'sa guy'". Binary characters are /// not handled. /// summary> /// Resulting String returns>
Public Static String Quote
String Input)
{
Return string.format ("'{0}'", input
.Replace ("'", "' '"));
}