Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.18 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace RestaurantApp
  8. {
  9.     public static class Menu
  10.     {
  11.         public static Dictionary<string, double> appetizers = new Dictionary<string, double>()
  12.         {
  13.             { "Stuffed Mushrooms", 5.2 },
  14.             { "Fried Calamari", 5.5 },
  15.             { "French Fries", 3.4 }
  16.         };
  17.  
  18.         public static Dictionary<string, double> mainDish = new Dictionary<string, double>()
  19.         {
  20.             { "Bourbon Chicken", 8.4 },
  21.             { "Crock-Pot Chicken With Black Beans & Cream Cheese", 9.4 },
  22.             { "Creamy Cajun Chicken Pasta", 8.6 }
  23.         };
  24.  
  25.         public static Dictionary<string, double> desserts = new Dictionary<string, double>()
  26.         {
  27.             { "Strawberry-Coconut Pie", 6.5 },
  28.             { "White Chocolate & Strawberry Layer Cake", 7.5 },
  29.             { "Milk Chocolate Cream Pie", 7 }
  30.         };
  31.  
  32.         public static Dictionary<string, double> drinks = new Dictionary<string, double>()
  33.         {
  34.             { "Beer", 2 },
  35.             { "Soft drink", 1.8 },
  36.             { "Coffee", 1.6 }
  37.         };
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement