示例#1
0
 /// <summary>
 /// Find an existing console variable with the specified name.
 /// </summary>
 /// <param name="name">The name of the console variable to locate.</param>
 /// <returns>The <see cref="ConVar"/> object representing the console variable if found; otherwise <c>null</c>.</returns>
 protected ConVar FindConVar(string name)
 {
     return(ConVarManager.FindConVar(this, name));
 }