using-statement

using-statement

文章 0 浏览 3

我应该把 try/catch 和“using”放在哪里?陈述?

可能的重复: try/catch + 使用正确的语法 我想 try/catch 以下内容: //write to file using (StreamWriter sw = File.AppendText(filePath)) { sw.…

习惯那些不曾习惯的习惯 2024-11-09 19:51:09 0 0

try/catch 不适用于 using 语句

try { using (response = (HttpWebResponse)request.GetResponse()) // Exception is not caught by outer try! } catch (Exception ex) { // Log } …

萤火眠眠 2024-11-07 13:41:06 0 0

为什么 C# 不允许将 using 变量作为 ref 或 out 传递给函数

可能的重复: 通过引用传递 IDisposable 对象会导致错误? 为什么 C# 不允许将变量作为 ref 或 out 从 using 块传递到函数? 这是我的代码: using (…

七七 2024-11-07 01:21:00 0 0

为什么在 using 语句中声明的变量被视为只读?

为什么 using 块中的变量 (myform) 被视为只读,并且当我尝试将其作为函数的引用传递时,编译器会引发错误。 示例代码: using (Form myform = new Fo…

拥抱没勇气 2024-11-06 20:27:44 0 0

使用语法触发调用所有实现Dispose方法的对象

是否可以使用using语法来触发所有实现的对象 IDisposable接口调用对应的Dispose()方法? 例如,如果感兴趣的部分中存在ObjectOne和ObjectTwo对象,我…

寻梦旅人 2024-11-05 16:45:13 1 0

在我的命名空间中公开外部库类时 typedef 或 using 关键字

我想将外部库中的类公开给我的库的用户。具体来说,我想将类“导入”到我的命名空间,以便用户不需要知道我在幕后使用哪些库。通常,我似乎可以通过使…

痴意少年 2024-11-05 05:52:47 0 0

通过 using 块使用 Process

可能的重复: 会发生什么如果我不关闭 C# 控制台应用程序中的 System.Diagnostics.Process? 因为 System.Diagnostics.Process 继承自实现 的 Compon…

忆沫 2024-11-04 13:11:06 1 0

C#“使用”陈述问题

如果使用 using 子句来释放连接,子句中实现 IDisposable 的其他项是否也会自动释放?如果没有,您如何确保所有 IDisposable 项目都被自动处置? publ…

青芜 2024-11-03 07:23:30 1 0

何时使用Using语句

我想我在这里使用的Using语句可能是错误的。写这个的更好方法是什么? Dim x As New Serialization.XmlSerializer( ... ) Using file As New FileStre…

心的憧憬 2024-10-24 18:37:34 1 0

为什么要在 ASP.NET 中以这种方式使用 using 语句?

再次重构一些代码。在 ASP.NET 页面之一中看到其中的一些内容: using (TextBox txtBox = e.Row.Cells[1].FindControl("txtBox") as TextBox) { } 无…

北城半夏 2024-10-21 15:15:55 2 0

为什么当我“使用”时我的 FileStream 对象被释放? BinaryReader 对象?

考虑以下函数: private int GetSomethingFromFile(FileStream fs) { using (BinaryReader br = new BinaryReader(fs)) { fs.Seek(0, SeekOrigin.Begi…

明媚殇 2024-10-21 13:28:34 2 0

为什么 using(null) 在 C# 中是有效的情况?

有人可以向我解释为什么下面显示的代码在 C# 中有效并执行对 Console.WriteLine 的调用吗? using (null) { Console.WriteLine ("something is here")…

女皇必胜 2024-10-20 06:37:30 1 0

VB.NET 使用多个 USING 语句与仅使用一个 USING 语句之间的区别

以下哪种方法是最好的方法?或者两者效果相同? Dim carrierName As String Dim someotherName As String Dim anotherOne As String Using oDa As New…

山色无中 2024-10-16 18:00:01 2 0

如何阻止 ReSharper 在移动/更新命名空间声明时删除未使用的 using 语句?

当使用 ReSharper 移动/更新命名空间声明时,是否有办法阻止 ReSharper 删除未使用的 using 语句? 换句话说,如果我有一个类,例如: using System.C…

蓝海 2024-10-13 22:46:36 2 0

尝试/捕捉 +使用正确的语法

哪一个: using (var myObject = new MyClass()) { try { // something here... } catch(Exception ex) { // Handle exception } } 或 try { using (v…

厌倦 2024-10-10 20:24:44 3 0
更多

推荐作者

烙印

文章 0 评论 0

singlesman

文章 0 评论 0

独孤求败

文章 0 评论 0

晨钟暮鼓

文章 0 评论 0

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