monotouch uses the real HttpWebRequest
[mcs.git] / docs / ecma334 / 14.2.4.xml
blobdc428dde2019813be9caeaa42f428fa80ca16b98
1 <?xml version="1.0"?>
2 <clause number="14.2.4" title="Binary operator overload resolution">
3   <paragraph>An operation of the form x op y, where op is an overloadable binary operator, x is an expression of type X, and y is an expression of type Y, is processed as follows: <list><list_item> The set of candidate user-defined operators provided by X and Y for the operation operator op(x, y) is determined. The set consists of the union of the candidate operators provided by X and the candidate operators provided by Y, each determined using the rules of <hyperlink>14.2.5</hyperlink>. If X and Y are the same type, or if X and Y are derived from a common base type, then shared candidate operators only occur in the combined set once. </list_item><list_item> If the set of candidate user-defined operators is not empty, then this becomes the set of candidate operators for the operation. Otherwise, the predefined binary operator op implementations become the set of candidate operators for the operation. The predefined implementations of a given operator are specified in the description of the operator (<hyperlink>14.7</hyperlink> through <hyperlink>14.13</hyperlink>). </list_item><list_item> The overload resolution rules of <hyperlink>14.4.2</hyperlink> are applied to the set of candidate operators to select the best operator with respect to the argument list (x, y), and this operator becomes the result of the overload resolution process. If overload resolution fails to select a single best operator, a compile-time error occurs. </list_item></list></paragraph>
4 </clause>