Microsoft.ResourceManagement.ObjectModel.RmAttributeName.ComputeKey C# (CSharp) Method

ComputeKey() private method

private ComputeKey ( ) : void
return 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());
            }
        }