我需要在 .NET 中设置与远程桌面服务有关的属性,对于Active Directory 用户(即通过System.DirectoryServices),但我看不到API公开了这些属性。我知道有一个COM接口用于此目的,即IADsTsUserEx。请告诉我如何在.NET中访问这些属性:)请记住编程语言是Python。
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...