??????vs2008?д???????');" target="_self">???????
?????????vs2008????????????VSTSDemo??
???????????????????????vs2008???????汾??vs????????ò??????????о??? :)
???????????????????????????LogonInfo??????????????????д??????????????????GetMax(int[] aryNum).????????????£?
namespace VSTSDemo
{
public class LogonInfo
{
public int GetMax(int[] aryNum)
{
if (aryNum == null || aryNum.Length == 0)
{
return -1;
}
if (aryNum.Length == 1)
{
return aryNum[0];
}
int n = aryNum[0];
for (int i = 1; i < aryNum.Length; i++)
{
if (aryNum[i] > n)
{
n = aryNum[i];
}
}
return n;
}
}
}
??????????????????????????????????????????????aryNum??????????????????
??????????????????????
??????????????GetMax???????棬??????????????????????????????

???????????????"???????????"??????????????????????????????????????LogonInfoTest?????????

???????????vs?????????LogonInfoTest????????????Solution Items????У????????LogonInfoTest????????????LogonInfoTest.cs????????????

???????????????е? Assert.Inconclusive("??????????????????") ?????????????????л?????????????????á??????????????????????????????????????????????????????д??????????