示例#1
0
        public static string GetStoreAttributeCode(this VFXData data, VFXAttribute attribute, string value, string index)
        {
            var storeAttributeCode = data.GetStoreAttributeCode(attribute, value);
            var result             = $"{storeAttributeCode.Replace("(index *", $"({index} *")};";

            return(result);
        }