Castle.MonoRail.Framework.Helpers.AbstractHelper.SQuote C# (CSharp) Method

SQuote() public static method

Quotes the specified string with double quotes
public static SQuote ( object content ) : string
content object The content.
return string
		public static string SQuote(object content)
		{
			return "\'" + content + "\'";
		}