“Comment appeler une chaîne à l'intérieur d'une classe différente” Réponses codées

Comment appeler une chaîne à l'intérieur d'une classe différente

public List<CardData> MyAddFunction()
{
  var cardDataList = new List<CardData>();
  cardDataList.Add(new CardData() { cardType = boxLine1, cardColor = randColor });
  return cardDataList;
}

static void Main(string[] args){
  this.cardDataList = MyAddFunction();
  Console.WriteLine(this.cardDataList.FirstOrDefault().CardType);
}
SAMER SAEID

Comment appeler une chaîne à l'intérieur d'une classe différente

public static List<CardData> cardDataList = new List<CardData>();

public class CardData
{
  public string cardType { get; set; }
  public int cardColor { get; set; }
}

static void Main(string[] args){
 Console.WriteLine(this.cardDataList.FirstOrDefault().CardType);
}

// another function should be called before the printing
public void MyAddFunction()
{
  cardDataList.Add(new CardData() { cardType = boxLine1, cardColor = randColor });
}
SAMER SAEID

Comment appeler une chaîne à l'intérieur d'une classe différente

static void Main(string[] args){
 var yourKeyword = "...Whatever";
 var theObjectYouWant = this.cardDataList.FirstOrDefault(x => x.CardType.StartsWith(yourKeyword));
 // the theObjectYouWant should contain the first match item or null in case of no match
 Console.WriteLine(theObjectYouWant.CardType);
}
SAMER SAEID

Réponses similaires à “Comment appeler une chaîne à l'intérieur d'une classe différente”

Questions similaires à “Comment appeler une chaîne à l'intérieur d'une classe différente”

Plus de réponses similaires à “Comment appeler une chaîne à l'intérieur d'une classe différente” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code