我有一个自动运行的R脚本。每次运行脚本中的变量都应该递增。作为示例,我有以下R脚本:
aaaaaa
bbbbbbbbbb
lab0 <- xxx(ffff,(hhh))
zzzzzzz
当上述脚本运行 lab0 时,应增加到 lab1 。当它再次运行到 lab2 时,再次运行到 lab3 等。 任何有关如何做到这一点的帮助将不胜感激。感谢。
答案 0 :(得分:0)
我完全不确定以下是你想要的
每次运行时,此脚本都会将 class Program
{
static void Main(string[] args)
{
stud stud = new stud() { id=10,name="test" };
PropertyInfo[] propertyInfo;
propertyInfo = typeof(stud).GetProperties(BindingFlags.Public|BindingFlags.Instance);
foreach (var item in propertyInfo)
{
Console.WriteLine(item.Name + " : " + item.GetValue(stud));
}
Console.ReadLine();
}
}
public class stud {
public int id { get; set; }
public string name { get; set; }
}
增加到lab0
。
lab1, ...