This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<mxfile host="app.diagrams.net" modified="2025-08-21T18:00:00.000Z" agent="Platform Archit <mxCell id="metadata_split" value="📄 Metadata vs Versions
Mutable Current State
Immutable History" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FFF3E0;strokeColor=#F57C00;strokeWidth=2;fontSize=11" vertex="1" parent="1"> | |
<mxGeometry x="870" y="850" width="170" height="60" as="geometry" /> | |
</mxCell> | |
<!-- ADR Badges (Logical Diagram) --> | |
<mxCell id="badge_async_007" value="ADR-007" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FFFFFF;strokeColor=#388E3C;fontSize=9;fontStyle=1" vertex="1" parent="1"> | |
<mxGeometry x="890" y="820" width="60" height="18" as="geometry" /> | |
</mxCell> | |
<mxCell id="badge_transform_006" value="ADR-006" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FFFFFF;strokeColor=#388E3C;fontSize=9;fontStyle=1" vertex="1" parent="1"> |
This file contains hidden or 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), |
This file contains hidden or 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); |