Use of Checked and UnChecked operators?
Answers were Sorted based on User's Feedback
Answer / jackir
when value of a datatype excided its limitaion then its
call overflow to avoid this problem we use ckecked and
unchecked
syntax
return unchecked(x+y);
return checked(x+y);
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / hridya
In a checked context, if the operation is a constant
expression a compile-time error occurs. Otherwise, when the
operation is performed at run-time, a
System.OverflowException is thrown.
In an unchecked context, the result is truncated by
discarding any high-order bits that do not fit in the
destination type.
| Is This Answer Correct ? | 4 Yes | 0 No |
What is func delegate in c#?
What exactly is serverless?
What is array formula?
Can we declare class as protected?
What is the difference between “out” and “ref” parameters in c#?
Why do we use class in c#?
How can you set image source dynamically from c# application to ”test.png” file?
What is the difference between double and decimal in c#?
Does constructor return any value in c#?
What is difference between tostring() vs convert.tostring() vs (string) cast
Which are the access modifiers available in c#?
Why is main static in c#?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)