Marc Gravell

98,948
reputation
18980 views

Moderator ♦

name Marc Gravell
member for 1 year
seen 2 hours ago
website
location UK
age 31

e-mail: marc.gravell@gmail.com
blog: http://marcgravell.blogspot.com

C# programmer and MVP, with a keen interest in all things code.

Timezone: GMT

Particular areas:
  • C# language specifics
  • LINQ (including EF, L2S, ADO.NET Data Services)
  • Protocol Buffers
  • Expression (the LINQ one, not Blend)
  • TSQL / SQL Server general
  • xslt
  • ASP.NET MVC (but not regular ASP.NET)
  • WinForms
  • Bespoke runtime object models (TypeDescriptor)

All original code samples I post here are given freely to the public domain on an "as is" basis, but no warranty is given (implied or assumed) etc - you know the drill...

2h
answered In F# what does the >> operator mean?
3h
answered How to better initialize nullable type from non-nullable?
3h
comment Object To DataView or DataSet or DataTable and back to object
And in the other direction: stackoverflow.com/questions/545328/…
3h
comment Object To DataView or DataSet or DataTable and back to object
From individual tables, perhaps something like: stackoverflow.com/questions/564366/…
3h
answered XSLT 1.0 Group By
3h
revised WCF XML and Serialization with List
added 428 characters in body; added 55 characters in body
3h
answered WCF XML and Serialization with List
3h
comment Reflection.Emit better than GetValue & SetValue :S
In principal you could; what level of functionality do you need? Just read or write can be done with DynamicMethod or Expression. What do you need? Does it have to be a PropertyDescriptor, for example?
3h
comment Associate File Type and Icon
It is a shame about the limitation; ClickOnce in 3.5 SP1 has this built in...
4h
comment Find a new job or go back to old one?
Merged from repost (perhaps I should have just deleted it) - this is not a programming question.
4h
answered How do I automatically have the build date inserted at design time
4h
comment C# XslCompiledTransform using XmlDocument or XPathDocument when editing is required?
See also: stackoverflow.com/questions/1888880/…
4h
comment C# XslCompiledTransform using XmlDocument or XPathDocument when editing is required?
Re your comment - there was a near-identical question about that over the weekend. Was that you? If not, I'll try to find it...
4h
comment Implementing Source Control
A now-deleted answer cross-references: web-articles.info/e/a/…
4h
comment C# KeyLogger as Background Service started automatically before logon
"then I am getting exception like System.UnAuthorzizeException" - frankly, good.
5h
accepted Visual Studio Test project base directory
6h
accepted C# XslCompiledTransform using XmlDocument or XPathDocument when editing is required?
8h
revised C# XslCompiledTransform using XmlDocument or XPathDocument when editing is required?
added 316 characters in body; added 275 characters in body
8h
answered C# XslCompiledTransform using XmlDocument or XPathDocument when editing is required?
8h
answered Regex for string enclosed in <*>, C#
8h
comment Regex for string enclosed in <*>, C#
Is there any good reason not to use an xml parser here?
8h
comment Reflection.Emit better than GetValue & SetValue :S
That's the one ;-p
9h
answered XmlDocument.Load error
9h
revised ServiceKnownTypeAttribute doesn’t pop up in WSDL
merging follow-up
9h
comment ServiceKnownTypeAttribute doesn’t pop up in WSDL
(Replied to comment)
9h
revised ServiceKnownTypeAttribute doesn’t pop up in WSDL
linq-to-sql; added 116 characters in body; added 41 characters in body
9h
comment ServiceKnownTypeAttribute doesn’t pop up in WSDL
Will update again, then...
9h
comment Visual Studio Debugging is not attaching to WebDev.WebServer.EXE
hmmm... ok, it was worth looking though.
12h
comment ServiceKnownTypeAttribute doesn’t pop up in WSDL
That worked for me... it generated: `[System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")] [System.Runtime.Serialization.DataContractAttribute(Name="ArticleImage", Namespace="schemas.datacontract.org/2004/07/… [System.SerializableAttribute()] public partial class ArticleImage ` etc...
12h
revised ServiceKnownTypeAttribute doesn’t pop up in WSDL
added 223 characters in body; added 224 characters in body; added 207 characters in body; added 27 characters in body
12h
comment ServiceKnownTypeAttribute doesn’t pop up in WSDL
will update... .
12h
answered ServiceKnownTypeAttribute doesn’t pop up in WSDL
12h
comment N-way intersection of sorted enumerables
replied to comment
12h
answered .Net Assembly /dll Sharing and Deploying
13h
answered sometimes Identity isn’t working.
13h
answered How to detect if page load in newly-started browser process fails?
13h
comment Unable to authenticate in imap server through windows application
Comment by OP: As imap is changed it's protocol, we cannot use the old imap server dll.
15h
comment N-way intersection of sorted enumerables
It never rewinds anything; you could argue that it is O(m * min(n[1],n[2],...n[m])), (m = number of sequences, each of length n[i]); since it only runs until any sequence is exhausted, and iterates all the sequences at the same rate until then.
15h
accepted N-way intersection of sorted enumerables
17h
accepted DataBinding of DataGridView and List<> with BindingSource
18h
revised Static methods in C#?
eric
18h
comment Static methods in C#?
It isn't about smart... like I explained, there wasn't any noticeable difference between doing a "null-check and static call" vs "virtual call" (which has a null-check built in). So why have two different options to maintain?
18h
revised N-way intersection of sorted enumerables
dups; added 10 characters in body
18h
comment N-way intersection of sorted enumerables
Re comment; why do you need to combine it with anything else? It seems to do the job "as is"?
18h
revised N-way intersection of sorted enumerables
empty<T> instead of new T[0]
18h
answered N-way intersection of sorted enumerables
19h
revised N-way intersection of sorted enumerables
added 415 characters in body
19h
answered N-way intersection of sorted enumerables
19h
revised Static methods in C#?
added 27 characters in body; added 35 characters in body
19h
comment Static methods in C#?
If you are just referring to answers from another question, why not just post the link as a comment, or vote as a duplicate?