User Ruben - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:01:47Z http://stackoverflow.com/feeds/user/21733 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1851651/strong-name-is-must/1851709#1851709 0 Answer by Ruben for Strong name is must Ruben 2009-12-05T09:31:58Z 2009-12-05T09:31:58Z <p>I suggest you look <a href="http://ondotnet.com/pub/a/dotnet/2003/04/28/strongnaming.html" rel="nofollow">here</a> for a very good explanation about strong naming and signing. In the article it says you can delay the signing of an assembly and still register the assembly into the GAC.</p> http://stackoverflow.com/questions/1783352/is-functional-programming-a-subset-of-imperative-programming/1784007#1784007 1 Answer by Ruben for Is functional programming a subset of imperative programming? Ruben 2009-11-23T15:50:19Z 2009-11-23T15:50:19Z <p>Pattern mapping like </p> <pre><code>f:: [int] -&gt; int f [] = 0 f (x:xs) = 1 + f(xs) </code></pre> <p>is something that is for instance one thing that is not available in imperative languages. Also constructs like curried functions:</p> <pre><code>add2 :: int -&gt; int add2 = (2 +) </code></pre> <p>is not available in most imperative languages</p> http://stackoverflow.com/questions/1783494/random-number-generation/1783552#1783552 2 Answer by Ruben for Random number generation Ruben 2009-11-23T14:43:41Z 2009-11-23T14:43:41Z <p>I would use a hash function like SHA or <a href="http://en.wikipedia.org/wiki/MD5" rel="nofollow">MD5</a>, this will generate the same output for a given input every time. </p> <p>An example to generate a hash in java is <a href="http://stackoverflow.com/questions/415953/generate-md5-hash-in-java">here</a>.</p> http://stackoverflow.com/questions/1694808/how-to-begin-approach-of-creating-a-small-lazily-evaluated-language/1695661#1695661 1 Answer by Ruben for How to begin approach of creating a small lazily-evaluated language. Ruben 2009-11-08T07:28:15Z 2009-11-08T07:28:15Z <p>The paper over designing/developing functional programming languages bij Simon Peyton Jones <a href="http://research.microsoft.com/~simonpj/papers/slpj-book-1987/" rel="nofollow">here</a> might be useful.</p> http://stackoverflow.com/questions/1541841/how-to-add-files-to-the-project-namespace-in-visual-studio/1541888#1541888 0 Answer by Ruben for how to add files to the project namespace in visual studio? Ruben 2009-10-09T05:03:32Z 2009-10-09T05:03:32Z <p>I think that you need to set the compile-property of the file to 'embedded resource'. You find this propert by selecting th file in the solution explorer and then go to the properties window (F4).</p> http://stackoverflow.com/questions/1059513/best-way-to-split-an-address-line-into-two-fields/1059546#1059546 0 Answer by Ruben for Best way to split an address line into two fields Ruben 2009-06-29T17:46:03Z 2009-06-29T17:46:03Z <p>What I did, but I doubt that it is the most performant solution is to reverse the address and then get the first part till you find a digit and take them all. i.e. the regex <code>.*\d+</code> on the reversed address. This solves your problem when a street contains a digit.</p> http://stackoverflow.com/questions/968437/log4net-compact-framework-3-5-no-app-config-to-add-file-appenders/992644#992644 0 Answer by Ruben for log4net compact framework 3.5 No app.config to add file appenders Ruben 2009-06-14T11:02:44Z 2009-06-14T11:02:44Z <p>This reaction is a bit late, and probably you have solved it already. However there might be some other users that have the same problem.</p> <p>You can also specify that you want to use a different config-file using the XmlConfiguratorAttribute. See <a href="http://logging.apache.org/log4net/release/sdk/log4net.Config.XmlConfiguratorAttribute.html" rel="nofollow">here</a>. For instance you could specify the log4net-configuration in 'log4net.config' which is in your bin-directory and add in the assemblyInfo.cs: </p> <pre><code>[assembly: log4net.Config.XmlConfigurator(ConfigFile="log4net.config",Watch=true)] </code></pre> http://stackoverflow.com/questions/914578/using-type-returned-by-type-gettype-in-c/914645#914645 0 Answer by Ruben for using type returned by Type.GetType() in c# Ruben 2009-05-27T08:41:32Z 2009-05-27T08:41:32Z <p>The solution to your problem is provided by Stefan already.</p> <p>The reason that you can not do <code>IList&lt;customer&gt;</code> is because you can not mix compile time and run-time types this way. A hint when I try to reason about something like this is: how can intellisense figure out what members it must show. In your example this can only be resolved at runtime. </p> <p>The answer given by Stefan, can be used. However I think it does not help in your underlying problem, because it does not give you intellisense. So I think you have no advantage over using just a non-generic list.</p> http://stackoverflow.com/questions/724692/description-for-webservice-parameters 0 Description for Webservice parameters Ruben 2009-04-07T08:49:58Z 2009-04-07T11:34:35Z <p>Hi,</p> <p>Is it possible to create a description for parameters used in an (asmx)-webservice? I know I can set the description of the webmethod with the Description-property. However is it also possible to add an attribute to the parameter to create description in the webservice for a given parameter</p> <pre><code>[WebMethod(Description = @"Get all approved friends &lt;br /&gt; where rownum &gt;= StartPage * count AND rownum &lt; (StartPage+1) * count")] public Friend[] GetFriendsPaged(int startPage, int count){...} </code></pre> <p>For instance in the example given above, I would like to add documentation that the StartPage is 0-based.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/599669/what-is-the-most-efficient-read-time-string-search-method-c/599711#599711 0 Answer by Ruben for What is the most efficient (read time) string search method? (C#) Ruben 2009-03-01T12:00:16Z 2009-03-01T19:08:34Z <p>As said before regex is your friend. You might want to look at RegularExpressions.Group. This way you can name part of the matched resultset.</p> <p><a href="http://www.java2s.com/Tutorial/CSharp/0360%5F%5FRegular-Expression/NameaRegexgroup.htm" rel="nofollow">Here is an example</a></p> http://stackoverflow.com/questions/129345/how-to-pass-arguments-to-a-constructor-in-an-ioc-framework 2 How to pass arguments to a constructor in an IOC-framework Ruben 2008-09-24T19:32:10Z 2009-02-25T14:17:16Z <p>How can I pass arguments to a constructor in an IOC-framework? I want to do something like: (Trying to be IOC-framework agnostic ;) )</p> <pre><code>object objectToLogFor = xxx; container.Resolve&lt;ILogging&gt;(objectToLogFor); public class MyLogging : ILogging { public MyLogging(object objectToLogFor){} } </code></pre> <p>It seems that this is not possible in StructureMap. But I would love to see someone prove me wrong.</p> <p>Are other frameworks more feature-rich? Or am I using the IOC-framework in the wrong way?</p> http://stackoverflow.com/questions/468721/set-openfolderdialog-to-a-special-folder 0 Set OpenFolderDialog to a special folder Ruben 2009-01-22T11:14:11Z 2009-01-22T11:30:36Z <p>Hi,</p> <p>I know it is possible to set the current folder of the OpenFolderDialog to a special folder, like "Program Files" or Desktop?</p> <p>But where do I find this? </p> http://stackoverflow.com/questions/455050/restricting-t-to-string-and-int/455062#455062 5 Answer by Ruben for Restricting T to string and int? Ruben 2009-01-18T12:39:19Z 2009-01-18T12:39:19Z <p>You could make <code>StatisticItemHits&lt;T&gt;</code> an abstract class and create two subclasses:</p> <p><code>StatisticItemHitsInt : StatisticItemHits&lt;int&gt;{}</code></p> <p><code>StatisticItemHitsString : StatisticItemHits&lt;string&gt;{}</code></p> <p>That way there can only be an int and string-representation of StatisticItemHits</p> http://stackoverflow.com/questions/419914/when-to-use-collectiont-vs-listt/419935#419935 0 Answer by Ruben for when to use Collection<T> vs List<T> Ruben 2009-01-07T11:19:25Z 2009-01-07T11:19:25Z <p>in <a href="http://stackoverflow.com/questions/398903/what-is-the-difference-between-list-of-t-and-collectionof-t">this</a> question you can see the difference between list and collection of T</p> http://stackoverflow.com/questions/415962/verify-if-file-exists-or-not-in-c/415979#415979 2 Answer by Ruben for Verify if file exists or not in C# Ruben 2009-01-06T09:58:59Z 2009-01-06T09:58:59Z <p>Hi,</p> <p>You could use:</p> <pre><code>System.IO.File.Exists(@"c:\temp\test.txt"); </code></pre> http://stackoverflow.com/questions/292378/how-to-avoid-dependencies-between-enum-values-in-code-and-corresponding-values-in/292386#292386 1 Answer by Ruben for How to avoid dependencies between Enum values in code and corresponding values in a database? Ruben 2008-11-15T10:23:00Z 2008-11-15T10:23:00Z <p>I do not know what the best solution is, I would like to hear that. Our solution is to explicitly type the enum like</p> <pre><code>public enum MyEnum : int { None =0, Value = 1, AnotherValue =2 } </code></pre> <p>And save the integer value to the database. When for instance the Value 1 is removed, you will still be able to use the enumeration and AnotherValue still has the value 2 in the database.</p> http://stackoverflow.com/questions/292363/choosing-when-to-instantiate-classes/292377#292377 0 Answer by Ruben for Choosing when to instantiate classes Ruben 2008-11-15T10:12:40Z 2008-11-15T10:12:40Z <p>I am not completely I understand your complete problem.</p> <p>But as far as I understand it right now, the performance/memory benefit will be rather minor. Therefore I would definitely favour the easibility side. </p> <p>So do what suits you the best. Only address performance/memory optimisation when needed. </p> http://stackoverflow.com/questions/289513/javascript-regex-to-match-a-persons-height/289547#289547 1 Answer by Ruben for Javascript regex to match a person's height Ruben 2008-11-14T08:58:17Z 2008-11-14T08:58:17Z <p>Maybe something like:</p> <pre><code>^(\d{1,5})\'((\s?)(-?)(\s?)([0-9]|(1[0-1]))\")?$ </code></pre> <p>see: <a href="http://groups.google.com/group/django-users/browse_thread/thread/155257a63c7a2cc6" rel="nofollow">here</a></p> http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c/287946#287946 17 Answer by Ruben for How do I overload the square-bracket operator in C#? Ruben 2008-11-13T19:25:19Z 2008-11-13T19:25:19Z <p>Hi, you can find how to do it <a href="http://msdn.microsoft.com/en-us/library/6x16t2tx.aspx" rel="nofollow">here</a>. In short it is:</p> <pre><code>public object this[int i] { get {return InnerList[i];} set {InnerList[i] = value;} } </code></pre> http://stackoverflow.com/questions/279208/is-there-a-vb-net-equivalent-for-cs-operator/279212#279212 6 Answer by Ruben for Is there a VB.net equivalent for C#'s ! operator? Ruben 2008-11-10T21:16:59Z 2008-11-10T21:16:59Z <p>Yes they are the same</p> http://stackoverflow.com/questions/278754/the-use-of-config-file-is-it-equivalent-to-use-of-globals/278780#278780 3 Answer by Ruben for The use of config file is it equivalent to use of globals? Ruben 2008-11-10T18:50:19Z 2008-11-10T18:50:19Z <p>My first reaction would be that it is not the same. I think the problem with globals is the read+write scenario. Config-files are readonly (at least in terms of execution). In the same way constants are not considered bad programming behaviour. Config-files, at least in the way I use them, are just easy-changable constants.</p> http://stackoverflow.com/questions/274404/how-to-determine-the-orientation-of-the-screen-in-c-for-mobile-devices/274551#274551 3 Answer by Ruben for How to determine the orientation of the screen in C# for mobile devices? Ruben 2008-11-08T09:23:17Z 2008-11-08T12:06:41Z <p>In Microsoft.WindowsMobile.Status there is a class which keeps track of all kinds of properties of your device. Besides the one you need, DisplayRotation, it also contains properties about phone coverage, Nr of missed calls, next appointment and many more. See <a href="http://msdn.microsoft.com/en-us/library/microsoft.windowsmobile.status.systemproperty.aspx" rel="nofollow">msdn</a> for more info. </p> <p>You can also add an event-handler to be notified of changes of these properties.</p> http://stackoverflow.com/questions/129921/what-is-mvc-model-view-controller/129935#129935 4 Answer by Ruben for What is MVC (Model View Controller)? Ruben 2008-09-24T20:58:43Z 2008-09-24T20:58:43Z <p>You might want to take a look at what Martin Fowler has to say about MVC, MVP and UI architectures in general at <a href="http://martinfowler.com/eaaDev/uiArchs.html" rel="nofollow">Martin Fowlers site</a>. </p> http://stackoverflow.com/questions/1689530/how-useful-is-cs-operator Comment by Ruben on How useful is C#'s ?? operator? Ruben 2009-11-06T18:53:50Z 2009-11-06T18:53:50Z Yes, exactly what I am thinking. http://stackoverflow.com/questions/1639344/abstract-factory-question Comment by Ruben on Abstract Factory Question Ruben 2009-10-28T19:00:25Z 2009-10-28T19:00:25Z This sounds a lot like a homework assignment http://stackoverflow.com/questions/1547476/easiest-way-to-split-a-string-on-newlines-in-net/1547484#1547484 Comment by Ruben on Easiest way to split a string on newlines in .net? Ruben 2009-10-10T12:14:00Z 2009-10-10T12:14:00Z if you add the parameter StringSplitOptions.RemoveEmptyEntries, then this will work perfectly. http://stackoverflow.com/questions/1248907/reputation-stackoverflow Comment by Ruben on reputation stackoverflow Ruben 2009-08-08T13:47:17Z 2009-08-08T13:47:17Z I think this belongs in meta.stackoverflow.com http://stackoverflow.com/questions/552718/cant-get-log4net-to-work-in-our-wcf-application/554119#554119 Comment by Ruben on Can't get Log4Net to work in our WCF application Ruben 2009-06-14T10:44:17Z 2009-06-14T10:44:17Z Note that you do have to specify this line in the project/dll where you are using log4net the first time. Therefore, I usually take no chances and just add it in all my assemblyInfo.cs's. http://stackoverflow.com/questions/915022/using-c-using-statement-with-an-custom-objects-function-do-i-need-to-implemen/915058#915058 Comment by Ruben on Using C# 'using' statement with an custom object's function do I Need to implement IDisposable? Ruben 2009-05-27T10:44:16Z 2009-05-27T10:44:16Z Why do you create two SqlConnections? At least one will not be disposed http://stackoverflow.com/questions/909674/why-is-vb-so-popular/909705#909705 Comment by Ruben on Why is VB so popular? Ruben 2009-05-26T09:23:21Z 2009-05-26T09:23:21Z You are describing my situation exactly as well. http://stackoverflow.com/questions/129345/how-to-pass-arguments-to-a-constructor-in-an-ioc-framework/573438#573438 Comment by Ruben on How to pass arguments to a constructor in an IOC-framework Ruben 2009-02-23T10:32:04Z 2009-02-23T10:32:04Z Thanks for the response. http://stackoverflow.com/questions/441896/how-to-be-master-in-c-and-object-oriented-technology/441978#441978 Comment by Ruben on How to be master in C# and object oriented technology ? Ruben 2009-01-14T07:10:55Z 2009-01-14T07:10:55Z + 1 for the 'SOLID'-link http://stackoverflow.com/questions/432937/net-why-arent-enums-range-value-checked/432952#432952 Comment by Ruben on .NET: Why aren't Enum's Range/Value Checked? Ruben 2009-01-11T13:49:00Z 2009-01-11T13:49:00Z This would only be the case when [Flags] is used. Now you can also say that (Foo)5 is Foo.Meenie | Foo.Miney. http://stackoverflow.com/questions/279208/is-there-a-vb-net-equivalent-for-cs-operator/279212#279212 Comment by Ruben on Is there a VB.net equivalent for C#'s ! operator? Ruben 2008-11-10T22:22:25Z 2008-11-10T22:22:25Z Thanks, I did not know that. I have not used bitwise complement operators in vb.net or C#