使用三元运算符的 Clipboard.SetText()

发布于 2024-12-11 04:28:05 字数 154 浏览 0 评论 0原文

Clipboard.SetText(txtBox1.Text);

如果 txtbox1.Text 不等于字符串 null, (nothing) ,如何在此处使用三元运算符将剪贴板的文本设置为 txtbox1.Text ?

谢谢

Clipboard.SetText(txtBox1.Text);

How can I use a ternary operator here to set the text of the clipboard to txtbox1.Text if txtbox1.Text is not equal to string null, (nothing) ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

海风掠过北极光 2024-12-18 04:28:05

你不能。无论哪种方式,您都在调用“SetText”。实现此目的的正确方法是,如果文本不为空,则不调用 SetText。
使用 Clipboard.SetText( a ? b : c);如果您不想设置文本(仅希望 SetText 忽略空值),除非您想要一些默认值,否则这里不会给您任何内容。在这种情况下,类似:


clipboard.SetText(string.IsNullOrEmpty(txtBox1.Text) ? "default text" : txtBox1.Text);

You cannot. You are calling "SetText" either way. The correct way to achieve that would be to not call SetText if the text is not null.
Using Clipboard.SetText( a ? b : c); would give you nothing here if you dont want to set the text (only except hoping that SetText would ignore a null) unless you want some default. in that case something like:


clipboard.SetText(string.IsNullOrEmpty(txtBox1.Text) ? "default text" : txtBox1.Text);

只是一片海 2024-12-18 04:28:05

你不知道。只需一个简单的 if 语句就可以工作:

if (!string.IsNullOrEmpty(txtBox1.Text)) {
    Clipboard.SetText(txtBox1.Text);
}

You don't. Just a simple if statement will work though:

if (!string.IsNullOrEmpty(txtBox1.Text)) {
    Clipboard.SetText(txtBox1.Text);
}
青萝楚歌 2024-12-18 04:28:05

为什么要使用三元运算符?如果您不需要 SetText,那就不要。

if (!String.IsNullOrEmpty(txtbox1.Text))
     Clipboard.SetText(txtbox1.Text);

我想你可以做

Clipboard.SetText(String.IsNullOrEmpty(txtbox1.Text) ? (default here, or as is: Clipboard.GetText()) : txtbox1.Text);

Why do you want to use the ternary operator? If you don't need to SetText, then don't.

if (!String.IsNullOrEmpty(txtbox1.Text))
     Clipboard.SetText(txtbox1.Text);

I suppose you could do

Clipboard.SetText(String.IsNullOrEmpty(txtbox1.Text) ? (default here, or as is: Clipboard.GetText()) : txtbox1.Text);
叹梦 2024-12-18 04:28:05

我建议使用简单的 if,使用三元运算符我无法想象足够的解决方案。

if (!String.IsNullOrEmpty(txtbox1.Text))
{
  Clipboard.SetText(txtbox1.Text);
}

三元混乱:(不要在实际应用中使用它!!!)

Action executeAction = String.IsNullOrEmpty(txtbox1.Text) 
                        ? () => {} 
                        : () => { Clipboard.SetText(txtbox1.Text); };

executeAction.Invoke();

I would suggest simple if, with ternary operator I can not imagine adequate solution.

if (!String.IsNullOrEmpty(txtbox1.Text))
{
  Clipboard.SetText(txtbox1.Text);
}

Ternary mess: (do not use this in a real application!!!)

Action executeAction = String.IsNullOrEmpty(txtbox1.Text) 
                        ? () => {} 
                        : () => { Clipboard.SetText(txtbox1.Text); };

executeAction.Invoke();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文