Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Opgave7_1
- {
- class Kurv
- {
- private List<List<string>> overliste = new List<List<string>>();
- public List<List<string>> Overliste
- {
- get { return overliste; }
- set { overliste = value; }
- }
- public void AddKurv(List<string> list, List<List<string>> mlist)
- {
- mlist.Add(list);
- }
- public void VisKurv(List<List<string>> list)
- {
- Console.WriteLine("{0}", list[0][0]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement