Microsoft.ResourceManagement.ObjectModel.RmAttributeName.ComputeKey C# (CSharp) Метод

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

private ComputeKey ( ) : void
Результат void
        void ComputeKey()
        {
            if (this.culture == null) {
                this.key = this.name;
            } else {
                this.key = String.Format(System.Globalization.CultureInfo.InvariantCulture, "{0};{1}", this.name, this.culture.ToString());
            }
        }