Axiom.Graphics.CompositorScriptLoader.RemoveQuotes C# (CSharp) Method

RemoveQuotes() static private method

static private RemoveQuotes ( string token ) : string
token string
return string
		static string RemoveQuotes( string token )
		{
			if ( token.Length >= 2 && token[ 0 ] == '\"' )
				token = token.Substring( 1 );
			if ( token[ token.Length - 1 ] == '\"' )
				token = token.Substring( 0, token.Length - 1 );
			return token;
		}