本文整理汇总了C#中Employee.SetPoints方法的典型用法代码示例。如果您正苦于以下问题:C# Employee.SetPoints方法的具体用法?C# Employee.SetPoints怎么用?C# Employee.SetPoints使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Employee
的用法示例。
在下文中一共展示了Employee.SetPoints方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TeamDataParser
public TeamDataParser(String s)
{
SpreadsheetInfo.SetLicense("FREE-LIMITED-KEY");
teamDataReader = new FileInfo(s);
teams = new List<Team>();
sr = new StreamReader(teamDataReader.FullName, System.Text.Encoding.Default);
String line;
while ((line = sr.ReadLine()) != null)
{
if (!line.Contains("//"))
{
String[] data = line.Split(' ');
decimal y;
if (Decimal.TryParse(data[0], out y)) // If the first character is a decimal...
{
int pl = (int)Decimal.Parse(data[0]);
List<Employee> me = new List<Employee>();
Employee m = new Employee();
for (int i = 1; i <= data.Length; i++)
{
if (Decimal.TryParse(data[i], out y))
{
m.SetPoints((int)Decimal.Parse(data[i]));
me.Add(m);
m = new Employee();
}
else
m.SetName(data[i]);
}
teams.Add(new Team(me, pl));
}
}
}
teams.Sort();
int z = 1;
foreach (Team t in teams)
{
t.Place = z;
z++;
}
}