コード例 #1
0
 public static MLink Link(MLink other)
 {
     return(new MLink(other));
 }
コード例 #2
0
ファイル: MLink.cs プロジェクト: iamsingularity/DotMarkdown
 public MLink(MLink other)
     : base(other)
 {
     _url  = other.Url;
     Title = other.Title;
 }