From 0101ad8ce2d3ab0fdfc7a838f20e15b8deef3ea7 Mon Sep 17 00:00:00 2001 From: Michael Oborne Date: Mon, 16 Aug 2021 20:55:20 +1000 Subject: [PATCH] CSharp binding: fix syntax Signed-off-by: Michael Oborne --- bindings/csharp/Device.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/csharp/Device.cs b/bindings/csharp/Device.cs index 760e7858e..96214243f 100644 --- a/bindings/csharp/Device.cs +++ b/bindings/csharp/Device.cs @@ -208,7 +208,7 @@ public override void write(string str) public readonly string name; /// The label of this device. - public readonly string label { get; private set; }; + public readonly string label { get; private set; } /// A list of all the attributes that this device has. public readonly List attrs;