6
Answers

Return two values in static method

I have a static method Where i return a variable .
  1.  public static Array LoadAssetAssignView()  
  2. {  
  3. //do something  
  4.  return arr;  
  5. }  
My question is ,Is it possible to return more than one array. 
Answers (6)