C# Multiple Return Values


On DOT Net a function return only one value, if you need to get more the one you can use 'Tuple'
Exemple :
  public Tuple<string, int> Getinfo()  
  {  
    return Tuple.Create("Mouhcin", 24);  
  }