请问ListItem类
http://msdn.microsoft.com/zh-cn/library/system.windows.documents.listitem.aspx为什么不能写:
ListItem lst = new ListItem;
或
ListItem lst =ListBox1.SelectedItem; --------------------编程问答-------------------- ListItem lst = new ListItem;
=>
ListItem lst = new ListItem();
--------------------编程问答--------------------
也不行 --------------------编程问答-------------------- 那要看你的上下文了。单独这么写应该可以。 --------------------编程问答--------------------
我就是单独写得,不行 --------------------编程问答--------------------
反编译。net类库代码如下:
命名空间: System.Windows.Documents
程序集: PresentationFramework(在 PresentationFramework.dll 中)
[TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
public ListItem();
看这个属性的解释:
TargetedPatchingOptOutAttribute 类
此 API 支持 .NET Framework 基础结构,不适合在代码中直接使用。
指示此特性应用于的 .NET Framework 类库方法不可能受服务版本的影响,因此它可以在本机映像生成器 (NGen) 格式的映像间内联。
用如下构造吧:
ListItem liV = new ListItem(new Paragraph(new Run("Boron")));
ListItem liVI = new ListItem(new Paragraph(new Run("Carbon")));
补充:.NET技术 , C#