コード例 #1
0
ファイル: App.cs プロジェクト: ninjah187/nintek-redux
 public State(
     string text,
     Prompts.State prompts,
     CurrencyRates.State currencyRates)
 {
     Text          = text;
     Prompts       = prompts;
     CurrencyRates = currencyRates;
 }
コード例 #2
0
ファイル: App.cs プロジェクト: ninjah187/nintek-redux
 public State()
 {
     Text          = "Text displayed by app.";
     Prompts       = new Prompts.State();
     CurrencyRates = new CurrencyRates.State();
 }