本文介绍了从函数中返回任何东西的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,


我正在尝试创建一个函数来测试TextBoxes并将Text转换为

DateTime如果不为空。


我的代码是:


公共共享函数GetDateTime(ByVal DateValue As String)As String


如果不是字符串.IsNullOrEmpty(DateValue)然后

返回DateTime.Parse(DateValue)

否则

不返回

结束如果


结束功能


然后在OnClick命令中我有:


CurrentMember.StartDate = GetDateTime(txtStartDate.Text)


当有日期时它可以正常但如果它是空的我得到一条错误消息:

System.InvalidCastException:从字符串键入''日期''不是

有效。


如果我做CurrentMember.StartDate =没有什么工作正常所以没有问题

现场空值。


有没有人有任何建议,因为这已经困扰了我太久了。


谢谢提前

詹姆斯

Hello,

I am trying to create a Function to test TextBoxes and convert the Text to
DateTime if not empty.

My code is :

Public Shared Function GetDateTime(ByVal DateValue As String) As String

If Not String.IsNullOrEmpty(DateValue) Then
Return DateTime.Parse(DateValue)
Else
Return Nothing
End If

End Function

Then in a OnClick command I have:

CurrentMember.StartDate = GetDateTime(txtStartDate.Text)

It works ok when there is a date but if its empty I get an error message:
System.InvalidCastException: Conversion from string "" to type ''Date'' is not
valid.

If I do CurrentMember.StartDate = Nothing it works fine so no problem with
Null values in the field.

Does anyone have any suggestions as this has puzzled me for too long now.

Thanks in advance
James

推荐答案





如果不是String.IsNullOrEmpty(DateValue)和DateValue< String.Empty然后


If Not String.IsNullOrEmpty(DateValue) AND DateValue <String.Empty Then




抱歉误读了你的帖子


函数GetDateTime(ByVal DateValue As String)As String

尝试

返回DateTime.Parse(DateValue)

Catch ex As Exception

不返回

结束尝试

结束功能

sorry misread your post

Function GetDateTime(ByVal DateValue As String) As String
Try
Return DateTime.Parse(DateValue)
Catch ex As Exception
Return Nothing
End Try
End Function


这篇关于从函数中返回任何东西的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-16 04:40