Determines if the given is inclusively within the range of `0-9, A-F and a-f` . - CSharp System

CSharp examples for System:Byte

Description

Determines if the given is inclusively within the range of `0-9, A-F and a-f` .

Demo Code

/*/*from w w w.j  av  a  2 s.  co m*/
This file came from Managed Media Aggregation, You can always find the latest version @ https://net7mma.codeplex.com/
  
 Julius.Friedman@gmail.com / (SR. Software Engineer ASTI Transportation Inc. http://www.asti-trans.com)

Permission is hereby granted, free of charge, 
 * to any person obtaining a copy of this software and associated documentation files (the "Software"), 
 * to deal in the Software without restriction, 
 * including without limitation the rights to :
 * use, 
 * copy, 
 * modify, 
 * merge, 
 * publish, 
 * distribute, 
 * sublicense, 
 * and/or sell copies of the Software, 
 * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 * 
 * 
 * JuliusFriedman@gmail.com should be contacted for further details.

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
 * 
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
 * TORT OR OTHERWISE, 
 * ARISING FROM, 
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 * v//
 */

public class Main{
        /// <summary>
        /// Determines if the given <see cref="char"/> is inclusively within the range of `0-9, A-F and a-f` .
        /// </summary>
        /// <param name="c">the reference to the car</param>
        /// <returns>True if the character is within the alloted range, otherwise false.</returns>
        [System.CLSCompliant(false)] //decimal values used describe 0 - 9,            A - F,                  a - f
        public static bool IsHexDigit(ref char c) { return (c >= 48 && c <= 57) || (c >= 65 && c <= 70) || (c >= 97 && c <= 102); }
        //OpenParenthesis, CloseParenthesis

        //static char[] LineEndingCharacters = System.Text.Encoding.ASCII.GetChars(new byte[] { NewLine, LineFeed });

        //WhiteSpaceCharacters ...

        /// <summary>
        /// Determines if the given <see cref="char"/> is inclusively within the range of `0-9, A-F and a-f` .
        /// </summary>
        /// <param name="c">the char</param>
        /// <returns>True if the character is within the alloted range, otherwise false.</returns>
        public static bool IsHexDigit(char c) { return IsHexDigit (ref c); }
}

Related Tutorials