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();
        }