VCProject.GetFilesEndingWith(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves a collection of file names whose trailing characters match a specified string.
public:
System::Object ^ GetFilesEndingWith(System::String ^ EndingWith);
public:
Platform::Object ^ GetFilesEndingWith(Platform::String ^ EndingWith);
winrt::Windows::Foundation::IInspectable GetFilesEndingWith(std::wstring const & EndingWith);
[System.Runtime.InteropServices.DispId(920)]
public object GetFilesEndingWith (string EndingWith);
[<System.Runtime.InteropServices.DispId(920)>]
abstract member GetFilesEndingWith : string -> obj
Public Function GetFilesEndingWith (EndingWith As String) As Object
Parameters
- EndingWith
- String
A string.
Returns
An IVCCollection that contains the files that end with the string specified by the EndingWith
parameter.
- Attributes
Remarks
The comparison ignores culture and case.