Mehrdad Afshari

62,926
reputation
9561 views

Registered User

name Mehrdad Afshari
member for 1 year
seen 25 mins ago
website
location Tehran, Iran
age 19
8h
accepted Why isn’t this method chosen based on the runtime-type of its object?
10h
revised Why isn’t this method chosen based on the runtime-type of its object?
added 52 characters in body
10h
answered Why isn’t this method chosen based on the runtime-type of its object?
12h
accepted Passing a reference of a base class to another function
12h
answered Passing a reference of a base class to another function
14h
answered Which is fast comparison: Convert.ToInt32(stringValue)==intValue or stringValue==intValue.ToString()
18h
accepted Uploading & extracting archive (zip, rar, targz, tarbz) automatically - security issue?
21h
comment Is there a solution to the fact that Visual Studio 2008 flashes like crazy over RDC?
I had better experiences when the server was Win7/Vista Enterprise/Ultimate with Aero enabled. Aero forces most of the stuff to be rendered on the client side and makes Remote Desktop feel much better.
1d
accepted How to efficiently build a tree from a flat structure ?
1d
accepted ObjectDumper class in LINQ
1d
answered ObjectDumper class in LINQ
1d
comment Is it fair to ask about by-reference arguments as a C interview question?
For an interview question, you don't necessarily need a true/false question. Whatever the interviewee replies, you can go on and ask him to elaborate; and in the process, evaluate him/her holistically.
1d
accepted Does using SecureZeroMemory() really help to make the application more secure?
1d
revised C++/CLI shorthand properties
added 406 characters in body
1d
accepted C++/CLI shorthand properties
1d
comment C++/CLI shorthand properties
DanDan: C++/CLI is an entirely different language. While it's a successor to Managed C++, Managed C++ is not really its old name.
1d
answered C++/CLI shorthand properties
2d
comment Uploading & extracting archive (zip, rar, targz, tarbz) automatically - security issue?
The very purpose of a compression algorithm is to compress stuff as good as possible so it's not considered a flaw in the algorithm. The entity who decompresses the file should perform some sanity checks on the size and prevent decompression of suspicious files.
2d
accepted Trying to use Dictionary<Dictionary<int, int>, Dictionary<int, int>> advice please
2d
revised C# Sequence selection
added 235 characters in body; added 2 characters in body
2d
accepted C# Sequence selection
2d
answered C# Sequence selection
2d
answered Uploading & extracting archive (zip, rar, targz, tarbz) automatically - security issue?
2d
comment Curiously Recurring Template Pattern and generics constraints (C#)
Qwertie: Yeah, why not?
2d
accepted Larger integer to smaller unsigned type conversion in C
2d
accepted Have you ever had this error?
2d
comment Have you ever had this error?
@behrooz: Visual Studio is a 32-bit app running in WOW64 mode. It can perfectly work with 32 bit ODBC drivers.
2d
answered Trying to use Dictionary<Dictionary<int, int>, Dictionary<int, int>> advice please
2d
answered Have you ever had this error?
2d
comment Can a SHA-1 hash be all-zeroes?
What's so special about forty zeros. How is this programming related?
2d
comment How to use the IR port on the back of my netbook to change the channel.
@Jeremy E: You should be able to see it in device manager as an Infrared device if it's able to transmit something, and it'll be mapped to a serial port.
2d
comment How to use the IR port on the back of my netbook to change the channel.
Your laptop has an IR transceiver? How old is it? Are you sure it's not just an IR receiver?
2d
comment Blocking a function call in C#
DW: Apparently, the OP wants to block the whole function from running, regardless of the instance so he should use a static lock object.
Dec
14
awarded  Nice Answer
Dec
14
comment Public IP Routing over Private GRE tunnel
belongs on serverfault.com
Dec
13
accepted Blocking a function call in C#
Dec
13
comment Blocking a function call in C#
If you need more states, you could create an enum and set that accordingly. -- or simply store a reference to the "owner" class somewhere and check whether your object currently "owns" the instance.
Dec
13
accepted Understanding synchronized
Dec
13
answered Understanding synchronized
Dec
13
comment Blocking a function call in C#
You don't lock functions. You lock objects. To lock a "function", you try to acquire a lock on an object at the beginning and release it at the end.
Dec
13
answered Blocking a function call in C#
Dec
12
accepted Upgrading from .NET 3.5 to 4. Questions to think about?
Dec
12
comment getting a job with MCPD (Microsoft Certified Professional Developer)
@RichardOD: I was 15. I have a few days left to 20. It wasn't exactly 5 years but it's close.
Dec
12
comment getting a job with MCPD (Microsoft Certified Professional Developer)
Oh, my comment is probably misinterpreted. I didn't say you shouldn't take certification exams. I did, five years ago, and it was especially effective for my situation, since some people didn't take me seriously because of my age back then. You should definitely take them if you think they'll help you.
Dec
12
comment getting a job with MCPD (Microsoft Certified Professional Developer)
Any employer who hires on the basis of certification exams is doomed to fail.
Dec
12
answered Async .aspx page
Dec
12
awarded  Guru
Dec
11
comment Computer science undergraduate project ideas
I don't have a negative view toward the project. I want to use my time in a productive project rather than just "doing homework".
Dec
11
comment Worst UI You’ve Ever Used
Actually, most software provided by hardware vendors suck big time, not just the UI; down to the kernel mode drivers themselves.
Dec
11
revised How would I get the corresponding Key for the maximum Value in a Dictionary(Of SomeEnum, Integer) using LINQ?
added 76 characters in body