我正在使用.NET 3.5。我創建一個簡單的類,並希望確保處理後的類不能爲空或不應該是新太..我們是否可以擁有Class.Empty對象,就像我們在String.Empty中一樣。
因此,如果我們可以測試它這樣
Dim objClass as new Class()
' do some processing with the class '
' and then.. check that if this object returned is not empty '
If (objClass = Class.Empty) Then
//Do stuff
Else
//Do Other Stuff
End If
是有沒有辦法像String.Empty那樣創建這個空的字段?
基本上我們那種發現 如果(objclass = Nothing或objClass =新的Class()),然後 結束時,如果 所以,我只是想縮短它只是空場或關鍵字,進入那個班。 – Mohit 2010-08-04 11:39:34
我什至使用這個 公共共享只讀空作爲新類 但仍然沒有在這裏做的工作。這是在String.Empty中使用的相同類型的代碼。 http://msdn.microsoft.com/en-us/library/system.string.empty.aspx – Mohit 2010-08-04 11:48:56
我假設objClass是類的實例或類的構造函數拋出異常。在構造函數調用和if語句之間也可以看到代碼。 – Manfred 2010-08-04 12:05:00