AGS.Editor.GUIController.GetMenuCommandID C# (CSharp) Метод

GetMenuCommandID() приватный Метод

private GetMenuCommandID ( string id, IEditorComponent component ) : string
id string
component IEditorComponent
Результат string
        private string GetMenuCommandID(string id, IEditorComponent component)
        {
            if (!id.Contains(CONTROL_ID_SPLIT))
            {
                id = component.ComponentID + CONTROL_ID_SPLIT + id;
            }
            return id;
        }
GUIController