F
Francisco
Hello,
Is there any code faster than this array position manipulation (some
code omitted for brevity)?:
internal struct TreeNodeTableItem {
public int a;
public int b;
public int c;
public int d;
public int e;
}
private System.Collections.Generic.List<TreeNodeTableItem>
_tabularView;
....
_tabularView.a=amount1;
_tabularView.b=amount2;
_tabularView.c=amount3;
_tabularView.d=amount4;
_tabularView.e=amount5;
....
¿Does anybody how to factorize in a variable (or whatever else)
"_tabularView"?
Thanks in advance
Is there any code faster than this array position manipulation (some
code omitted for brevity)?:
internal struct TreeNodeTableItem {
public int a;
public int b;
public int c;
public int d;
public int e;
}
private System.Collections.Generic.List<TreeNodeTableItem>
_tabularView;
....
_tabularView.a=amount1;
_tabularView.b=amount2;
_tabularView.c=amount3;
_tabularView.d=amount4;
_tabularView.e=amount5;
....
¿Does anybody how to factorize in a variable (or whatever else)
"_tabularView"?
Thanks in advance