OSPlatform.Create(String) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea una nuova istanza di OSPlatform.
public:
static System::Runtime::InteropServices::OSPlatform Create(System::String ^ osPlatform);
public static System.Runtime.InteropServices.OSPlatform Create (string osPlatform);
static member Create : string -> System.Runtime.InteropServices.OSPlatform
Public Shared Function Create (osPlatform As String) As OSPlatform
Parametri
- osPlatform
- String
Il nome della piattaforma rappresentata dall'istanza.
Restituisce
Un oggetto che rappresenta il sistema operativo osPlatform
.
Eccezioni
Il parametro osPlatform
è una stringa vuota.
osPlatform
è null
.
Commenti
La chiamata al Create metodo con le stringhe seguenti equivale a recuperare l'oggetto OSPlatform dalla proprietà statica corrispondente:
stringa osPlatform | OSPlatform - proprietà |
---|---|
"FREEBSD" | OSPlatform.FreeBSD |
"LINUX" | OSPlatform.Linux |
"OSX" | OSPlatform.OSX |
"WINDOWS" | OSPlatform.Windows |