├── .gitignore ├── ListRDPConnections.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── RegistryInterop.cs ├── sharprdpconns.csproj ├── sharprdpconns.csproj.user └── sharprdpconns.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M09Ic/SharpRDPConns/HEAD/.gitignore -------------------------------------------------------------------------------- /ListRDPConnections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M09Ic/SharpRDPConns/HEAD/ListRDPConnections.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M09Ic/SharpRDPConns/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | fork from https://github.com/Heart-Sky/ListRDPConnections 2 | 3 | 删除vb依赖, 兼容全版本C# 4 | 5 | thanks for heart-sky 6 | 7 | -------------------------------------------------------------------------------- /RegistryInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M09Ic/SharpRDPConns/HEAD/RegistryInterop.cs -------------------------------------------------------------------------------- /sharprdpconns.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M09Ic/SharpRDPConns/HEAD/sharprdpconns.csproj -------------------------------------------------------------------------------- /sharprdpconns.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M09Ic/SharpRDPConns/HEAD/sharprdpconns.csproj.user -------------------------------------------------------------------------------- /sharprdpconns.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M09Ic/SharpRDPConns/HEAD/sharprdpconns.sln --------------------------------------------------------------------------------