public NSAttributedString(string str, CTStringAttributes attributes) : this(str, attributes != null ? attributes.Dictionary : null) { }
public NSMutableAttributedString(string str, CTStringAttributes attributes) : this(str, attributes == null ? null : attributes.Dictionary) { }
public void SetAttributes(CTStringAttributes attrs, NSRange range) { SetAttributes (attrs == null ? null : attrs.Dictionary, range); }
public NSTextStorage(string str, CTStringAttributes attributes) : base(str, attributes) { }