fCraft.PrepareParametrizedManifold.CheckParamVar C# (CSharp) Method

CheckParamVar() private static method

private static CheckParamVar ( string s ) : void
s string
return void
        private static void CheckParamVar( string s )
        {
            if ( string.IsNullOrWhiteSpace( s ) || ( s != "t" && s != "u" && s != "v" ) )
                throw new ArgumentException( "expected parametrization variable name is t, u, or v" );
        }