What are the uses of “using” in C#?

后端 未结 29 2986
有刺的猬
有刺的猬 2020-11-21 07:31

User kokos answered the wonderful Hidden Features of C# question by mentioning the using keyword. Can you elaborate on that? What are the uses of

29条回答
  •  猫巷女王i
    2020-11-21 07:52

    Another great use of using is when instantiating a modal dialog.

    Using frm as new Form1
    
    Form1.ShowDialog
    
    ' do stuff here
    
    End Using
    

提交回复
热议问题