.Net中的Clipboard。。算是bug么

用Clipboard.GetData(format)与Clipboard.SetData(format,data)中的format竟然大小写敏感..搞了好久才知道。

format 返回类型
Text string
text以及其所有大小写格式 MemoryStream
HTML Format string
html format以及其所有大小写格式 MemoryStream

我建议都用MemoryStream的,可以用ToArray()输出byte[]。 string的很容易出现各种各样的问题,尤其在HTML Format上。

发表评论