AjaxControlToolkit.Reference.Core.Parsing.RawDoc.RawDoc C# (CSharp) 메소드

RawDoc() 공개 메소드

public RawDoc ( string name ) : System.Collections.Generic
name string
리턴 System.Collections.Generic
        public RawDoc(string name)
        {
            var match = Regex.Match(name, @"^(?<prefix>[a-zA-Z]{1,2}):(?<fullName>[^(]*)(\([^)]*\))?");

            TargetNamePrefix = match.Groups["prefix"].Value;
            TargetFullName = match.Groups["fullName"].Value;
        }
RawDoc