TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Raja
NA
2k
356.9k
How to pass Empty Decimal Value?
Apr 12 2017 7:08 AM
I have use below two for Allocate empty value to string and pass the empty string value.
string test = "";
string test1 = string.Empty;
But i use decimal as empty
decimal test3 = "";
this is show
Cannot Implicitly convert type 'string' to 'decimal'
and try another to refer in online to use for fix this
string test1 = string.Empty;
decimal test2 = decimal.Parse(test1);
but it shows
Input string was not in a correct format.
Reply
Answers (
6
)
How to load the html element when click on anchor tag in web
How to select customer name frim to dropdown list and displa