<html>

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 11 (filtered)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:"MS Mincho";
        panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
        {font-family:"\@MS Mincho";
        panose-1:2 2 6 9 4 2 5 8 3 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
h1
        {margin-top:12.0pt;
        margin-right:0in;
        margin-bottom:.25in;
        margin-left:1.0in;
        text-align:right;
        text-indent:-.25in;
        page-break-before:always;
        border:none;
        padding:0in;
        font-size:14.0pt;
        font-family:Arial;}
h2
        {margin-top:12.0pt;
        margin-right:0in;
        margin-bottom:12.0pt;
        margin-left:1.5in;
        text-indent:-.25in;
        page-break-after:avoid;
        border:none;
        padding:0in;
        font-size:14.0pt;
        font-family:Arial;
        font-weight:normal;}
h3
        {margin-top:12.0pt;
        margin-right:0in;
        margin-bottom:12.0pt;
        margin-left:2.0in;
        text-indent:-.25in;
        page-break-after:avoid;
        border:none;
        padding:0in;
        font-size:12.0pt;
        font-family:Arial;}
h4
        {margin-top:12.0pt;
        margin-right:0in;
        margin-bottom:12.0pt;
        margin-left:2.5in;
        text-indent:-.25in;
        page-break-after:avoid;
        font-size:12.0pt;
        font-family:Arial;
        font-style:italic;}
h5
        {margin-top:12.0pt;
        margin-right:0in;
        margin-bottom:3.0pt;
        margin-left:3.0in;
        text-indent:-.25in;
        font-size:13.0pt;
        font-family:"Times New Roman";
        font-style:italic;}
p.MsoCaption, li.MsoCaption, div.MsoCaption
        {margin-top:6.0pt;
        margin-right:0in;
        margin-bottom:12.0pt;
        margin-left:0in;
        text-align:center;
        font-size:10.0pt;
        font-family:"Times New Roman";
        font-weight:bold;}
p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
        {margin-top:4.0pt;
        margin-right:0in;
        margin-bottom:4.0pt;
        margin-left:.5in;
        font-size:10.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
p.graphic, li.graphic, div.graphic
        {margin-top:4.0pt;
        margin-right:-.5in;
        margin-bottom:4.0pt;
        margin-left:-.5in;
        text-align:center;
        page-break-after:avoid;
        font-size:10.0pt;
        font-family:"Times New Roman";}
p.programcode, li.programcode, div.programcode
        {margin:0in;
        margin-bottom:.0001pt;
        page-break-after:avoid;
        background:#E6E6E6;
        font-size:9.0pt;
        font-family:"Courier New";}
span.EmailStyle21
        {font-family:Arial;
        color:windowtext;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
 /* List Definitions */
 ol
        {margin-bottom:0in;}
ul
        {margin-bottom:0in;}
-->
</style>

</head>

<body lang=EN-US link=blue vlink=purple>

<div class=Section1>

<ol style='margin-top:0in' start=1 type=1>
 <li class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
     font-family:Arial'>I&#8217;d like to pass an array of 6 doubles to a
     method, but get an error message. For example, the &#8220;myMethod&#8221;
     call below fails when it requires a double array.</span></font></li>
</ol>

<p class=MsoNormal style='margin-left:.75in'><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial'>array=[1, 2, 3.5, 4]</span></font></p>

<p class=MsoNormal style='margin-left:.75in'><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial'>myObject.myMethod(array)</span></font></p>

<ol style='margin-top:0in' start=2 type=1>
 <li class=MsoNormal><font size=3 face="Times New Roman"><span
     style='font-size:12.0pt'>I&#8217;d like to invoke an overloaded operator,
     or it&#8217;s backing op_xxx method. For example, both of these fail:</span></font></li>
</ol>

<p class=MsoNormal style='margin-left:.75in'><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'>myComplex = myComplex1 + myComplex2</span></font></p>

<p class=MsoNormal style='margin-left:.75in'><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'>myComplex = Complex.op_Addition(myComplex1,
myComplex2) </span></font></p>

</div>

</body>

</html>