Skip to content
This repository was archived by the owner on Jun 5, 2019. It is now read-only.

Commit 961e9e3

Browse files
author
ColinA-MSFT
committed
Add missing public visibility to AdcChannel methods.
1 parent fc507da commit 961e9e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Core/Windows/Devices/Adc/AdcChannel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public AdcController Controller
3737
}
3838
}
3939

40-
int ReadValue()
40+
public int ReadValue()
4141
{
4242
if (m_disposed)
4343
{
@@ -47,7 +47,7 @@ int ReadValue()
4747
return m_provider.ReadValue(m_channelNumber);
4848
}
4949

50-
double ReadRatio()
50+
public double ReadRatio()
5151
{
5252
if (m_disposed)
5353
{

0 commit comments

Comments
 (0)