Microsoft.VisualStudio.Project.ConfigProvider.GetPlatformNames C# (CSharp) Method

GetPlatformNames() public method

Returns one or more platform names.
public GetPlatformNames ( uint celt, string names, uint actual ) : int
celt uint Specifies the requested number of platform names. If this number is unknown, can be zero.
names string On input, an allocated array to hold the number of platform names specified by . This parameter can also be if the parameter is zero. On output, contains platform names.
actual uint The actual number of platform names returned.
return int
        public virtual int GetPlatformNames(uint celt, string[] names, uint[] actual)
        {
            string[] platforms = this.GetPlatformsFromProject();
            return GetPlatforms(celt, names, actual, platforms);
        }