AIMA.Core.Learning.Framework.StringAttributeSpecification.createAttribute C# (CSharp) Метод

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

public createAttribute ( String rawValue ) : LearningAttribute
rawValue String
Результат LearningAttribute
        public LearningAttribute createAttribute(String rawValue)
        {
            return new StringAttribute(rawValue, this);
        }
    }