Array.BinarySearch(Array, Object) Method with examples in C# Last Updated : 14 Apr, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report This method is used to search a specific element in the entire one-dimensional sorted array by using the IComparable interface which is implemented by each element of the array and by the specified object. Syntax: public static int BinarySearch (Array array, object value); Parameters: array: It is the sorted 1-D array to search. value: It is the object to search for. Return Value: It returns the index of the specified value in the specified array if the value is found otherwise it returns a negative number. There are different cases of return values as follows: If the value is not found and value is less than one or more elements in the array, the negative number returned is the bitwise complement of the index of the first element that is larger than value.If the value is not found and value is greater than all elements in the array, the negative number returned is the bitwise complement of (the index of the last element plus 1).If this method is called with a non-sorted array, the return value can be incorrect and a negative number could be returned, even if the value is present in the array. Exceptions: ArgumentNullException: If the array is null.RankException: If the array is multidimensional.ArgumentException: If the value is of a type which is not compatible with the elements of the array.InValidOperationException: If the value does not implement the IComparable interface, and the search encounters an element that does not implement the IComparable interface. Below programs illustrate the above-discussed method: Example 1: csharp // C# program to illustrate the // Array.BinarySearch(Array, Object) // Method using System; class GFG { // Main Method public static void Main(String[] args) { // taking an 1-D Array int[] arr = new int[7] {1,5,7,4,6,2,3}; // for this method array // must be sorted Array.Sort(arr); Console.Write("The elements of Sorted Array: "); // calling the method to // print the values display(arr); // taking the element which is // to search for in a variable // It is not present in the array object s = 8; // calling the method containing // BinarySearch method result(arr, s); // taking the element which is // to search for in a variable // It is present in the array object s1 = 4; // calling the method containing // BinarySearch method result(arr, s1); } // containing BinarySearch Method static void result(int[] arr2, object k) { // using the method int res = Array.BinarySearch(arr2, k); if (res < 0) { Console.WriteLine("\nThe element to search for "+ "({0}) is not found.", k); } else { Console.WriteLine("The element to search for "+ "({0}) is at index {1}.", k, res); } } // display method static void display(int[] arr1) { // Displaying Elements of array foreach(int i in arr1) Console.Write(i + " "); } } Output:The elements of Sorted Array: 1 2 3 4 5 6 7 The element to search for (8) is not found. The element to search for (4) is at index 3. Example 2: csharp // C# program to illustrate the // Array.BinarySearch(Array, Object) // Method using System; class GFG { // Main Method public static void Main(String[] args) { // taking an 1-D Array int[] arr = new int[7] {1,5,7,4,6,2,3}; // for this method array // must be sorted Array.Sort(arr); Console.Write("The elements of Sorted Array: "); // calling the method to // print the values display(arr); // it will return a negative value as // 9 is not present in the array Console.WriteLine("\nIndex of 9 is: "+ Array.BinarySearch(arr,8)); } // display method static void display(int[] arr1) { // Displaying Elements of array foreach(int i in arr1) Console.Write(i + " "); } } Output:The elements of Sorted Array: 1 2 3 4 5 6 7 Index of 9 is: -8 Important Points: For this method, the array must in sorted order i.e ascending order.This method does not support searching arrays that contain negative indexes.Duplicate elements are allowed. If the Array contains more than one element equal to the value, the method returns the index of only one of the occurrences, and not necessarily the first one.null can always be compared with any other reference type; therefore, comparisons with null do not generate an exception.This method is an O(log n) operation, where n is the Length of the array. Reference: https://docs.microsoft.com/en-us/dotnet/api/system.array.binarysearch?view=netframework-4.7.2#System_Array_BinarySearch_System_Array_System_Object_ Comment More infoAdvertise with us Next Article Array.BinarySearch(Array, Object) Method with examples in C# S saurabh_1901 Follow Improve Article Tags : C# Similar Reads Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co 11 min read Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance 10 min read Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact 12 min read 3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power 13 min read Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and 9 min read What is Vacuum Circuit Breaker? A vacuum circuit breaker is a type of breaker that utilizes a vacuum as the medium to extinguish electrical arcs. Within this circuit breaker, there is a vacuum interrupter that houses the stationary and mobile contacts in a permanently sealed enclosure. When the contacts are separated in a high vac 13 min read Polymorphism in Java Polymorphism in Java is one of the core concepts in object-oriented programming (OOP) that allows objects to behave differently based on their specific class type. The word polymorphism means having many forms, and it comes from the Greek words poly (many) and morph (forms), this means one entity ca 7 min read CTE in SQL In SQL, a Common Table Expression (CTE) is an essential tool for simplifying complex queries and making them more readable. By defining temporary result sets that can be referenced multiple times, a CTE in SQL allows developers to break down complicated logic into manageable parts. CTEs help with hi 6 min read Python Variables In Python, variables are used to store data that can be referenced and manipulated during program execution. A variable is essentially a name that is assigned to a value. Unlike many other programming languages, Python variables do not require explicit declaration of type. The type of the variable i 6 min read Spring Boot Interview Questions and Answers Spring Boot is a Java-based framework used to develop stand-alone, production-ready applications with minimal configuration. Introduced by Pivotal in 2014, it simplifies the development of Spring applications by offering embedded servers, auto-configuration, and fast startup. Many top companies, inc 15+ min read Like