akmad

1,585
Reputation
170 views

Registered User

Name akmad
Member for 1 year
Seen 19 hours ago
Website
Location US
Age 31
C#, MS Stack developer from Albany.
Nov
19
comment i want to make a function or macro that will return the current code location in the format of namespace.class.function()
This is definitely the easiest way to get the StackTrace; but note that it'll be pretty slow. Make sure you don't over use this!
Nov
19
accepted SQL Join Table Naming Convention
Nov
19
answered SQL Join Table Naming Convention
Nov
13
answered C# Array of objects
Nov
13
answered Attaching to a factory instantiated singleton event - what would be a clean approach?
Nov
10
comment Database design - exposing Primary Key
... and that's why every field in the db should be a varchar. You know, just in case. I kid, I kid!
Nov
9
answered Writing drive C: in Windows 7/Vista
Nov
9
answered C# abstract Dispose method
Nov
9
answered ASP.NET and C# constant processing behind the site possible?
Nov
9
answered What’s the best way to implement a search?
Nov
9
answered How can I add time values in ASP.NET?
Nov
9
answered What to log when an exception is raised
Nov
9
answered Is there any advantage of using volatile keyword in contrast to use the Interlocked class?
Nov
9
revised Building Interpreter Of a Document Format
Edited to add some links to working with XML in C#
Nov
6
accepted Building Interpreter Of a Document Format
Nov
6
answered Building Interpreter Of a Document Format
Nov
6
answered Unit Testing code that doesn’t execute immediately
Nov
6
comment Is there a good “free” graphical web.config editor?
Does "free" equal mostly free or really free? I guess I'm asking what's with the quotes.
Nov
6
comment C# Windows Application Developer - 3rd Party Tools
Indeed sir, you undoubtedly are.
Nov
6
comment C# Windows Application Developer - 3rd Party Tools
@philip haha... I was thinking the same thing.
Nov
6
answered C# Windows Application Developer - 3rd Party Tools
Nov
6
answered DTOs vs Serializing Persisted Entities
Nov
6
answered doubts regarding Memory management in .net
Nov
5
awarded  Nice Answer
Sep
24
comment How to TryParse for Enum value?
@Amby, the cost of simply entering a try/catch block is negligible. The cost of THROWING an exception isn't, but then that's supposed to be exceptional, no? Also, don't say "we never know"... profile the code and find out. Don't waste your time wondering if something is slow, FIND OUT!
Sep
9
awarded  Civic Duty
Aug
21
accepted Uploading files in WCF services approaches
Aug
20
comment asp.net - Is my path virtual?
Like you said, this is mostly a problem of terminology. You are using "virtual" but a more correct term would be "relative". Any path that doesn't have an absolute path (ie C:\Folder\file.txt) would therefore have to be relative to the current directory.
Aug
20
accepted asp.net - Is my path virtual?
Aug
20
answered asp.net - Is my path virtual?
Aug
20
comment Uploading files in WCF services approaches
You are correct about only being able to use a single parameter when passing a stream, however you can get around that by using the [MessageHeader(MustUnderstand = true)] attribute on a message type field. See kjellsj.blogspot.com/2007/02/… for an example.
Aug
20
revised C#-Hierarchical Iteration works differently
added 36 characters in body
Aug
20
comment C#-Hierarchical Iteration works differently
@Jon... oops, thanks for the info! @Greg... didn't know that either, I've always just implemented the interface. However, I think that just creating a method with a compatible signature is not clear and is something I would definitely flag in a code review. Nice to know it's there though!
Aug
20
answered C# search with resemblance / affinity
Aug
20
comment C#-Hierarchical Iteration works differently
While I totally agree with your advice to not use prefixes, that seems a little orthogonal to the question at hand.
Aug
20
answered C#-Hierarchical Iteration works differently
Aug
19
comment A .NET custom attribute to perform impersonation?
You're welcome! I didn't put it in the example, but make sure you wrap your 'op' call in a try finally block and dispose the WindowsIdentity and WindowsImpersonationContext objects.
Aug
19
answered c# usercontrol depending on user class library
Aug
19
answered Uploading files in WCF services approaches
Aug
19
comment C# - Generics- string array processing
Nice! There is so many nice new methods that came along to support LINQ.
Aug
19
answered C# - Generics- string array processing
Aug
19
comment Is there a code generation tool that accepts Excel files as input?
I have no input on the question... but having a excel file that "contains definitions of functions that need to be generated in C#" seems like something you'd read about on thedailywtf.com. Eek!
Aug
18
accepted A .NET custom attribute to perform impersonation?
Aug
18
answered A .NET custom attribute to perform impersonation?
Aug
18
answered WCF Communication though named pipes with non .net App
Aug
18
awarded  Organizer
Aug
18
revised WCF Communication though named pipes with non .net App
edited tags
Aug
17
comment What is the best logging solution for a C# .NET 3.5 project
I think the problem that people are eluding to is the definitive nature of the response with absolutely no discussion as to why. IMO the "answer" to this type of question should be a well-rounded discussion of the alternatives out there, along with the relative merits of each. Remember that this is not just for you, but also for other people who may ask this question in the future.
Aug
17
answered Best practices organizing a Visual Studio solution
Aug
15
awarded  Yearling