SaveFileDialog.ShowPinnedPlaces not available?

45 views Asked by At

Since SaveFileDialog inherits from System.Windows.Forms.FileDialog shouldn't it be the case that all methodes are available ? If I create the following, its not accessible - why ?

using ( SaveFileDialog fHandle = new SaveFileDialog() ) { fHandle.ShowPinnedPlaces ... }

Addition: Since this is .net version dependent is there a way to add a compiler directive / parser directive that will ignore it if it is less than required version of this object ( property/method ) or accept if its compatible ?

0

There are 0 answers