PKStudio.PortingKitWrapper.CheckLibraryName C# (CSharp) Method

CheckLibraryName() public method

Checks Library name for uniqueness
public CheckLibraryName ( string name ) : bool
name string
return bool
        public bool CheckLibraryName(string name)
        {
            bool res = true;
            foreach (LibraryWrapper lib in m_helper.Libraries)
            {
                if (lib.Name == name) res = false;
            }
            return res;
        }
PortingKitWrapper