User Ruben - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T12:01:47Zhttp://stackoverflow.com/feeds/user/21733http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1851651/strong-name-is-must/1851709#18517090Answer by Ruben for Strong name is mustRuben2009-12-05T09:31:58Z2009-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#17840071Answer by Ruben for Is functional programming a subset of imperative programming?Ruben2009-11-23T15:50:19Z2009-11-23T15:50:19Z<p>Pattern mapping like </p>
<pre><code>f:: [int] -> 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 -> int
add2 = (2 +)
</code></pre>
<p>is not available in most imperative languages</p>
http://stackoverflow.com/questions/1783494/random-number-generation/1783552#17835522Answer by Ruben for Random number generationRuben2009-11-23T14:43:41Z2009-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#16956611Answer by Ruben for How to begin approach of creating a small lazily-evaluated language.Ruben2009-11-08T07:28:15Z2009-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#15418880Answer by Ruben for how to add files to the project namespace in visual studio?Ruben2009-10-09T05:03:32Z2009-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#10595460Answer by Ruben for Best way to split an address line into two fieldsRuben2009-06-29T17:46:03Z2009-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#9926440Answer by Ruben for log4net compact framework 3.5 No app.config to add file appendersRuben2009-06-14T11:02:44Z2009-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#9146450Answer by Ruben for using type returned by Type.GetType() in c#Ruben2009-05-27T08:41:32Z2009-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<customer></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-parameters0Description for Webservice parametersRuben2009-04-07T08:49:58Z2009-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 <br />
where rownum >= StartPage * count AND rownum < (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#5997110Answer by Ruben for What is the most efficient (read time) string search method? (C#)Ruben2009-03-01T12:00:16Z2009-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-framework2How to pass arguments to a constructor in an IOC-frameworkRuben2008-09-24T19:32:10Z2009-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<ILogging>(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-folder0Set OpenFolderDialog to a special folderRuben2009-01-22T11:14:11Z2009-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#4550625Answer by Ruben for Restricting T to string and int?Ruben2009-01-18T12:39:19Z2009-01-18T12:39:19Z<p>You could make <code>StatisticItemHits<T></code> an abstract class and create two subclasses:</p>
<p><code>StatisticItemHitsInt : StatisticItemHits<int>{}</code></p>
<p><code>StatisticItemHitsString : StatisticItemHits<string>{}</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#4199350Answer by Ruben for when to use Collection<T> vs List<T>Ruben2009-01-07T11:19:25Z2009-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#4159792Answer by Ruben for Verify if file exists or not in C#Ruben2009-01-06T09:58:59Z2009-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#2923861Answer by Ruben for How to avoid dependencies between Enum values in code and corresponding values in a database?Ruben2008-11-15T10:23:00Z2008-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#2923770Answer by Ruben for Choosing when to instantiate classesRuben2008-11-15T10:12:40Z2008-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#2895471Answer by Ruben for Javascript regex to match a person's heightRuben2008-11-14T08:58:17Z2008-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#28794617Answer by Ruben for How do I overload the square-bracket operator in C#?Ruben2008-11-13T19:25:19Z2008-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#2792126Answer by Ruben for Is there a VB.net equivalent for C#'s ! operator?Ruben2008-11-10T21:16:59Z2008-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#2787803Answer by Ruben for The use of config file is it equivalent to use of globals?Ruben2008-11-10T18:50:19Z2008-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#2745513Answer by Ruben for How to determine the orientation of the screen in C# for mobile devices?Ruben2008-11-08T09:23:17Z2008-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#1299354Answer by Ruben for What is MVC (Model View Controller)?Ruben2008-09-24T20:58:43Z2008-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-operatorComment by Ruben on How useful is C#'s ?? operator?Ruben2009-11-06T18:53:50Z2009-11-06T18:53:50ZYes, exactly what I am thinking. http://stackoverflow.com/questions/1639344/abstract-factory-questionComment by Ruben on Abstract Factory QuestionRuben2009-10-28T19:00:25Z2009-10-28T19:00:25ZThis sounds a lot like a homework assignmenthttp://stackoverflow.com/questions/1547476/easiest-way-to-split-a-string-on-newlines-in-net/1547484#1547484Comment by Ruben on Easiest way to split a string on newlines in .net?Ruben2009-10-10T12:14:00Z2009-10-10T12:14:00Zif you add the parameter StringSplitOptions.RemoveEmptyEntries, then this will work perfectly.http://stackoverflow.com/questions/1248907/reputation-stackoverflowComment by Ruben on reputation stackoverflowRuben2009-08-08T13:47:17Z2009-08-08T13:47:17ZI think this belongs in meta.stackoverflow.comhttp://stackoverflow.com/questions/552718/cant-get-log4net-to-work-in-our-wcf-application/554119#554119Comment by Ruben on Can't get Log4Net to work in our WCF applicationRuben2009-06-14T10:44:17Z2009-06-14T10:44:17ZNote 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#915058Comment by Ruben on Using C# 'using' statement with an custom object's function do I Need to implement IDisposable?Ruben2009-05-27T10:44:16Z2009-05-27T10:44:16ZWhy do you create two SqlConnections? At least one will not be disposedhttp://stackoverflow.com/questions/909674/why-is-vb-so-popular/909705#909705Comment by Ruben on Why is VB so popular?Ruben2009-05-26T09:23:21Z2009-05-26T09:23:21ZYou are describing my situation exactly as well.http://stackoverflow.com/questions/129345/how-to-pass-arguments-to-a-constructor-in-an-ioc-framework/573438#573438Comment by Ruben on How to pass arguments to a constructor in an IOC-frameworkRuben2009-02-23T10:32:04Z2009-02-23T10:32:04ZThanks for the response.http://stackoverflow.com/questions/441896/how-to-be-master-in-c-and-object-oriented-technology/441978#441978Comment by Ruben on How to be master in C# and object oriented technology ?Ruben2009-01-14T07:10:55Z2009-01-14T07:10:55Z+ 1 for the 'SOLID'-linkhttp://stackoverflow.com/questions/432937/net-why-arent-enums-range-value-checked/432952#432952Comment by Ruben on .NET: Why aren't Enum's Range/Value Checked?Ruben2009-01-11T13:49:00Z2009-01-11T13:49:00ZThis 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#279212Comment by Ruben on Is there a VB.net equivalent for C#'s ! operator?Ruben2008-11-10T22:22:25Z2008-11-10T22:22:25ZThanks, I did not know that. I have not used bitwise complement operators in vb.net or C#