diff --git a/csharp/src/Microsoft.ML.OnnxRuntime/OnnxRuntime.shared.cs b/csharp/src/Microsoft.ML.OnnxRuntime/OnnxRuntime.shared.cs index 4e18b22f2a..7cab9e89b6 100644 --- a/csharp/src/Microsoft.ML.OnnxRuntime/OnnxRuntime.shared.cs +++ b/csharp/src/Microsoft.ML.OnnxRuntime/OnnxRuntime.shared.cs @@ -44,7 +44,11 @@ namespace Microsoft.ML.OnnxRuntime } /// - /// This class initializes the process-global ONNX Runtime environment instance (OrtEnv) + /// This class initializes the process-global ONNX Runtime environment instance (OrtEnv). + /// The singleton class OrtEnv contains the process-global ONNX Runtime environment. + /// It sets up logging, creates system wide thread-pools (if Thread Pool options are provided) + /// and other necessary things for OnnxRuntime to function. Create or access OrtEnv by calling + /// the Instance() method. Call this method before doing anything else in your application. /// public sealed class OrtEnv : SafeHandle {