Spark.Mid.MidBuiltinMethodDecl.GetTemplate C# (CSharp) Метод

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

public GetTemplate ( string profile ) : string
profile string
Результат string
        public string GetTemplate(string profile)
        {
            return (from tag in _tags
                    where tag.Profile == profile
                    select tag.Template).FirstOrDefault();
        }