2
votes
3answers
114 views
How to simplify this MemoryStream code
This code returns a thumbnail of an image loaded from a byte array. I'm trying to understand why the author is using 4 memory streams and if there is a simple way of rewriting this or if it is okay …
2
votes
C# Convert Integers into Written Numbers
I use this code.It is VB code but you can easily translate it to C#. It works
Function NumberToText(ByVal n As Integer) As String Select Case nCase 0 Return "" …
0
votes
Interview Questions for an Intern
@stu, For the tournament question,you CAN NOT have 1000 teams, maybe its a trick question.Simple explanation is 1000/2 = 500 (First round) then 500/2 = 250 (Second Round) then 250/2 = 125 ( …
1
vote
In c# , when sending a parameter to a method, when should we use “ref” and when “out” and when without any of them?
In addition to Colin's detailed answer, you could also use out parameters to return multiple values from one method call. See for example the method below which returns 3 values.
st …
0
votes
Casting to string versus calling ToString
If its any help, you could use the 'as' operator which is similar to the cast but returns null instead of an exception on any conversion failure.
string str3 = obj as string;
…
