UnityEditor.AndroidPluginImporterExtension.PluginInfo.ConflictsWith C# (CSharp) Метод

ConflictsWith() публичный Метод

public ConflictsWith ( AndroidPluginImporterExtension other ) : bool
other AndroidPluginImporterExtension
Результат bool
            public bool ConflictsWith(AndroidPluginImporterExtension.PluginInfo other)
            {
                return ((this.assetName == other.assetName) && (((this.cpuType == "AnyCPU") || (other.cpuType == "AnyCPU")) || (other.cpuType == this.cpuType)));
            }
        }
AndroidPluginImporterExtension.PluginInfo