Buy Questpond's video subscriptions on
huge discount
.
Online: 2797
Home
Articles
Interviews
Forums
For Beginners
Popular Questions
ITIL Career Advice
PMP Career Advice
Career Advices
Codes
Videos
ASP.NET
ASP.NET MVC
Android Intel XDK
Sql Server
AngularJS
Bootstrap
Backbone.JS
MongoDB
LESS (CSS)
jQuery
WPF
WWF
SSIS
LightSwitch
Tutorials
News
ASP.NET MVC
|
Be Interview Ready
|
Top Performers
|
DNF MVP
|
Top Posts
|
Winners
|
Subscribe
|
Catalogs
Welcome Guest !
Register
Login
Home
>
Exclusive Interviews
>
C#
>
Post
|
Interview FAQs
|
Exclusive Interview Home
|
Interview Home
|
Search
Loading ...
How to cast String to any datatype?
Posted by
deccansoft
on 9/15/2010 | Category:
C# Interview questions
| Views: 2281
Dim str as string
Dim n as Integer
str="65"
n=str --> Invalid
str=n --> Invalid
n=CInt(str) --> Valid
n=Integer.parse(str)--> Valid
Asked In:
Many Interviews |
Alert Moderator
Bookmark It
< Previous question :
What is the difference between System.String and S ...
Next question > :
Which Exception will be thrown If TryParse fails?
Comments or Responses
Login to post response
More Interview Questions
Which Exception will be thrown If TryParse fails?
What is the default value of DataType Double?
Can you explain the difference between an ADO.NET Dataset and an ADO R ...
What is MARS ? What is the importance of it?
Which is the top layer in the ADO.NET Entity Framework?
What happens internally if the statement cmd.Prepare() is executed in ...
How the RDBMS products(Oracle,SqlServer) differ?
Which Managed Provider provides least performance?