This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using Microsoft.Office.Interop.Word; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
List<string> path = new List<string>(args); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// skapa lite random löprundor och lägg i en lista | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
var löprundor = new List<LöpRunda> | |
{ | |
new LöpRunda(5, 20.3), | |
new LöpRunda(10, 55), | |
new LöpRunda(11, 69), |