From 4e46b341337698d40fbeb2c7868840f6e37961a5 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Tue, 23 Aug 2022 17:28:51 +0200 Subject: [PATCH] linear_solver: add tag to BasicExample.cs --- ortools/linear_solver/samples/BasicExample.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ortools/linear_solver/samples/BasicExample.cs b/ortools/linear_solver/samples/BasicExample.cs index 346fa48be3..2086113219 100644 --- a/ortools/linear_solver/samples/BasicExample.cs +++ b/ortools/linear_solver/samples/BasicExample.cs @@ -13,8 +13,10 @@ // Minimal example to call the GLOP solver. // [START program] +// [START import] using System; using Google.OrTools.LinearSolver; +// [END import] public class BasicExample {