Skip to content

Commit 05822aa

Browse files
IsConnected is not static anymore (#9)
1 parent 156c0fa commit 05822aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

System.Device.UsbStream/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
/////////////////////////////////////////////////////////////////
2121
// This attribute is mandatory when building Interop libraries //
2222
// update this whenever the native assembly signature changes //
23-
[assembly: AssemblyNativeVersion("100.0.0.1")]
23+
[assembly: AssemblyNativeVersion("100.0.0.2")]
2424
/////////////////////////////////////////////////////////////////

System.Device.UsbStream/UsbStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public sealed class UsbStream : System.IO.Stream
3737
/// <summary>
3838
/// Gets a value indicating whether the USB device is connected or not.
3939
/// </summary>
40-
public static extern bool IsConnected
40+
public extern bool IsConnected
4141
{
4242
[MethodImpl(MethodImplOptions.InternalCall)]
4343
get;

0 commit comments

Comments
 (0)