active questions tagged static-methods - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:26:27Z http://stackoverflow.com/feeds/tag/static-methods http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/538870/java-static-methods-best-practices 14 Java - static methods best practices avalys 2009-02-11T21:24:32Z 2009-11-25T06:29:42Z <p>Let's say I have a class designed to be instantiated. I have several private "helper" methods inside the class that do not require access to any of the class members, and operate solely on their arguments, returning a result.</p> <pre><code>public class Example { private Something member; public double compute() { double total = 0; total += computeOne(member); total += computeMore(member); return total; } private double computeOne(Something arg) { ... } private double computeMore(Something arg) {... } } </code></pre> <p>Is there any particular reason to specify <code>computeOne</code> and <code>computeMore</code> as static methods - or any particular reason not to?</p> <p>It is certainly easiest to leave them as non-static, even though they could certainly be static without causing any problems.</p> http://stackoverflow.com/questions/1791969/xajax-bad-response-when-calling-a-static-method 0 xajax - bad response when calling a static method Onema 2009-11-24T18:24:43Z 2009-11-24T18:24:43Z <p>When using XAJAX I have a call to a function that trims a string. this is a simple function and works just as expected. </p> <p>Now I want to make this function available to the whole system so I have added it to a helper class as a static method. ever since I moved this function to this class I get a bad response, something like this.</p> <pre> <code> Error: the XML response that was returned from the server is invalid. Received: some code here... You have whitespace in your response. </code> </pre> <p>This message most of the times comes up when there is a fatal error, but nothing shows up in the error log... don't really know what to do from here, any suggestions?</p> <p>I have included the file, so I know is not an include problem, the static method gets called, but the response that comes back from XAJAX is bad.</p> <p>Thank you</p> http://stackoverflow.com/questions/1773541/java-static-reflection-on-subclasses 0 Java static reflection on subclasses mooman 2009-11-20T22:04:40Z 2009-11-20T22:48:13Z <p>Hi all. I am implementing a sort of ORM in Java. I am trying to do a static find method that is only in the parent class. Let me get to the point:</p> <pre><code>public class DB { public static Object find (int id) { // i want to return anew instance of the calling subclass } } public class Item extends DB { // nothing here } public class Test { public static void main () { Item i = (Item) Item.find(2); ... } } </code></pre> <p>I don't know how to have the find method know which of its inherited class is calling it, so that i can return the right instance (and maybe call the right constructor, etc.) And the inherited class could be anything, no limit. </p> <p>I've tried stacktrace, but it's only traced from Test to DB.</p> <p>Any ideas?</p> <p>Thank you everyone!</p> http://stackoverflow.com/questions/1759602/what-is-so-great-about-extension-methods 2 What is so great about extension methods? [closed] Dan 2009-11-18T22:26:54Z 2009-11-18T22:38:30Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/487904/what-advantages-of-extension-methods-have-you-found">What Advantages of Extension Methods have you found?</a> </p> </blockquote> <p>All right, first of all, I realize this sounds controversial, but I don't mean to be confrontational. I am asking a serious question out of genuine curiosity (or maybe <em>puzzlement</em> is a better word).</p> <p>Why were extension methods ever introduced to .NET? What benefit do they provide, aside from making things look nice (and by "nice" I mean "deceptively like instance methods")?</p> <p>To me, any code that uses an extension method like this:</p> <pre><code>Thing initial = GetThing(); Thing manipulated = initial.SomeExtensionMethod(); </code></pre> <p>is misleading, because it implies that <code>SomeExtensionMethod</code> is an instance member of <code>Thing</code>, which misleads developers into believing (at least as a gut feeling... you may deny it but I've definitely observed this) that (1) <code>SomeExtensionMethod</code> is probably implemented efficiently, and (2) since <code>SomeExtensionMethod</code> actually looks like it's <em>part</em> of the <code>Thing</code> class, surely it will remain valid if <code>Thing</code> is revised at some point in the future (as long as the author of <code>Thing</code> knows what he/she's doing).</p> <p>But the fact is that extension methods don't have access to protected members or any of the internal workings of the class they're extending, so they're just as prone to breakage as any other static methods.</p> <p>We all know that the above could easily be:</p> <pre><code>Thing initial = GetThing(); Thing manipulated = SomeNonExtensionMethod(initial); </code></pre> <p>To <em>me</em>, this seems a lot more, for lack of a better word, <strong>honest</strong>.</p> <p>What am I missing? Why do extension methods exist?</p> http://stackoverflow.com/questions/1750837/php-call-member-variables-off-a-class-within-static-method 0 php call member variables off a class within static method Richard 2009-11-17T18:30:35Z 2009-11-17T19:04:20Z <p>Hello, </p> <p>I am using some method to autoload helper files with functions The only problem I am having now, is how to call the variables in that class.</p> <p>Because I am not instantiating it as an object $this won't work. But what will??</p> <pre><code>class some_helperclass { var $some_variable = '007'; public static function some_func() { //return 'all ok'; if (self::some_variable !== FALSE) { return self::ip_adres; } } </code></pre> <p>I can call the function from anywhere now with the help from spl_autoload_register()</p> <p>like this:</p> <pre><code>some_helperclass:: some_func(); </code></pre> <p>thanks, Richard</p> http://stackoverflow.com/questions/1728175/httpcontext-current-response-inside-a-static-method 2 HttpContext.Current.Response inside a static method Rippo 2009-11-13T09:36:12Z 2009-11-13T09:42:21Z <p>I have the following static method inside a static class. My question is it safe to use HttpContext.Current.Response inside a static method? I want to be 100% sure that it is thread safe and is only associated with the calling thread.. Does anybody know the answer?</p> <pre><code> public static void SetCookie(string cookieName, string cookieVal, System.TimeSpan ts) { try { HttpCookie cookie = new HttpCookie(CookiePrefix + cookieName) {Value = cookieVal, Expires = DateTime.Now.Add(ts)}; HttpContext.Current.Response.Cookies.Add(cookie); } catch (Exception) { return; } } </code></pre> http://stackoverflow.com/questions/1663411/when-is-it-best-to-use-static-functions-in-asp-net 4 When is it best to use Static Functions in ASP.NET Mahesh Velaga 2009-11-02T20:12:50Z 2009-11-02T21:32:28Z <p>Hi all,</p> <p>I have been wondering, When to use static functions and when not to in ASP.NET</p> <p>What are the advantages and disadvantages in using them, in various aspects like performance, following good practices etc (and many more, which ever you feel is relevant).</p> <p>Looking forward for your replies.</p> <p>Thanks,<br /> Mahesh Velaga.</p> http://stackoverflow.com/questions/370962/why-cant-static-methods-be-abstract-in-java 8 Why can't static methods be abstract in Java hhafez 2008-12-16T10:45:27Z 2009-10-20T14:27:45Z <p>The question is in Java why can't I define an abstract static method? for example</p> <pre><code>abstract class foo { abstract void bar( ); // &lt;-- this is ok abstract static void bar2(); //&lt;-- this isn't why? } </code></pre> http://stackoverflow.com/questions/169378/c-method-can-be-made-static-but-should-it 33 C# method can be made static, but should it? dlamblin 2008-10-04T00:01:49Z 2009-10-15T20:44:25Z <p>Resharper likes to point out multiple functions per asp.net page that could be made static. Does it help me if I do make them static? Should I make them static and move them to a utility class?</p> http://stackoverflow.com/questions/1543380/static-methods-and-the-call-stack-in-iis-asp-net 0 static methods and the call stack in IIS/asp.net brianstewey 2009-10-09T12:03:20Z 2009-10-14T14:57:02Z <p>Theoretical question. If you have 100 separate requests coming to an aspx web page that calls the static method below.</p> <pre><code> public static GeocodeResult GeocodeQuery(string query) { int train, tube, dlr = 0; // manipulate these ints if (train) { // do something important } } </code></pre> <p>Does every request have a separate call stack?</p> <p>If so - Does this static method call get pushed on these separate call stacks?</p> <p>If so - Therefore are these ints thread safe? ie. 100 requests, 100 call frames, 300 ints.</p> <p>Cheers</p> http://stackoverflow.com/questions/1544225/static-method-with-polymorphism-in-c 0 static method with polymorphism in c++ Ori Cohen 2009-10-09T14:42:41Z 2009-10-09T15:43:08Z <p>hi, I have a weird issue using polymorphism. I have a base class that implements a static method. This method must be static for various reasons. The base class also has a pure virtual method <code>run()</code> that gets implemented by all the extended classes. I need to be able to call <code>run()</code> from the static class.</p> <p>The problem, of course, is that the static class doesn't have a this pointer. This method can be passed in a void * parameter. I have been trying to come up with a clever way to pass the run method into it, but nothing has worked so far. have also tried passing this into it. The problem with this is that I would then have to instantiate it, which requires knowledge of the extended class. This defeats the whole purpose of the polymorphism. </p> <p>Any ideas on how to go about this?</p> http://stackoverflow.com/questions/1523220/how-to-find-static-method-calls-in-large-java-project 1 How to find static method calls in large Java project? Andrew Swan 2009-10-06T01:40:56Z 2009-10-08T03:45:54Z <p>I'm refactoring some Java code to be more decoupled by changing some static method calls to non-static calls, for example:</p> <pre><code>// Before: DAO.doSomething(dataSource, arg1, ..., argN) // After: dao.doSomething(arg1, ..., argN) </code></pre> <p>My problem is that in a large project, it can be hard to find where static method calls are being made. Is there an easy way to do this, either from the command line or in Eclipse?</p> <p>Such a tool would need to let me ignore "benign" static method calls such as these (either by not finding them in the first place, or by allowing them to be easily deleted from the search results):</p> <pre><code>String.valueOf(...) Integer.parseInt(...) MyClass.someBenignStaticMethod(...) </code></pre> <p>Some clarifications:</p> <ul> <li>I'm not interested in finding method calls made via reflection</li> <li>I don't know what static methods currently exist in this project, so it's not as simple as searching for their callers using Eclipse's "Open Call Hierarchy" command (Ctrl-Alt-H), although an easy way to search for non-private static methods would let me use this approach</li> <li>I'm also interested in finding calls to static methods located outside my project, e.g. javax.mail.Transport#send</li> <li>I'm looking for a free (as in beer) solution</li> </ul> http://stackoverflow.com/questions/1534060/in-php-when-should-i-use-static-methods-vs-abstract-classes 3 in PHP, when should I use static methods vs abstract classes? Oliver Nassar 2009-10-07T20:38:26Z 2009-10-07T21:03:02Z <p>I'm under the interpretation that if I need to access a method statically, I should make the class abstract only if I'll never need it instantiated. Is that true?</p> http://stackoverflow.com/questions/1507067/how-do-parameters-and-their-usage-in-methods-effect-the-static-instance-design-de 0 How do parameters and their usage in methods effect the static/instance design decision? dotnetdev 2009-10-01T23:41:29Z 2009-10-02T13:20:57Z <p>Just a simple question:</p> <p>I have read that a class should be made static when it does not modify its instance. So if I have a class which is called Account and it has properties such as Id, Duration, etc and these do not get modified by the class, then this can be made static otherwise it should remain static.</p> <p>How does this (whether the instance itself, via its properties, mutates) effect the static/instance decision?</p> <p>Furthermore, if a class takes loads of parameters (say this Account class, sticking to our analogy), but does not modify the instance (so no Account variable changes - nothing like Account.x = y // where y is from another class), I assume this can be still made static? So it's not the parameters which are an issue or where they come from, it's what they do?</p> <p>If it is a property, the same principles apply as when deciding to make a field static or not (such as if the data the field holds will be expensive to get, then have one field holding it - static - correct me if I am wrong).</p> <p>I've noticed there are over 100 threads on static methods (this falls into a static method as it is dealing with parameters) on C# and I will read all of these as there are good questions and good answers.</p> <p>Thanks</p> http://stackoverflow.com/questions/1495496/what-are-the-advantages-of-immutable-objects-over-static-methods 0 What are the advantages of immutable objects over static methods? Sam 2009-09-29T23:48:02Z 2009-09-29T23:56:02Z <pre><code>interface IDependency { string Baz { get; set; } } class Foo { IDependency dependency; public Foo(IDependency dependency) { this.dependency = dependency; } public void FubarBaz() { dependency.Baz = "fubar"; } } </code></pre> <p>I could also implement this as:</p> <pre><code>class FooStatic { public static void FubarBaz(IDependency dependency) { dependency.Baz = "fubar"; } } </code></pre> <p>When should I choose immutable objects over static methods? Are there any situations where the reverse might be true?</p> <p>Also, it seems to me that immutable objects should not have void methods. What do you think?</p> http://stackoverflow.com/questions/1449379/php-custom-static-method-access 0 PHP custom static method access Balls-of-steel 2009-09-19T19:58:06Z 2009-09-19T20:03:14Z <p>Hi,</p> <p>I'm in PHP and I must access a Static method of an object which name must change.</p> <pre><code> private $controlleur = null; private static $instance = null; private function __construct() { $nomControlleur = "Controlleurs\_" . Session::singleton()-&gt;controlleur; $this-&gt;controlleur = $nomControlleur::singleton(); } </code></pre> <p>This preceding code is giving me " Syntax error unexpected :: ". <br> I've also tried writing {$nomControlleur}::singleton(); but it's giving me even more errors, thanks a lot for your help.</p> <p>Balls of steel</p> http://stackoverflow.com/questions/1439959/distinguishing-between-static-and-non-static-methods-in-c-at-compile-time 0 distinguishing between static and non-static methods in c++ at compile time? gf 2009-09-17T16:38:13Z 2009-09-17T17:50:17Z <p>For some tracing automation for identifying instances i want to call either:</p> <ul> <li>a non-static method of the containing object returning its identifier</li> <li>something else which always returns the same id</li> </ul> <p>My current solution is to have a base class with a method which() and a global function which() which should be used if not in the context of an object. This however does not work for static member functions, here the compiler prefers the non-static method over the global one.</p> <p>Simplified example:</p> <pre><code>class IdentBase { public: Ident(const std::string&amp; id) _id(id) {} const std::string&amp; which() const { return _id; } private: const std::string _id; }; const std::string&amp; which() { static const std::string s("bar"); return s; } #define ident() std::cout &lt;&lt; which() &lt;&lt; std::endl class Identifiable : public IdentBase { public: Identifiable() : Ident("foo") {} void works() { ident(); } static void doesnt_work() { ident(); } // problem here }; </code></pre> <p>Can i somehow avoid using work-arounds like a special macro for static member functions (maybe using some template magic)?</p> http://stackoverflow.com/questions/1435068/why-does-my-asp-net-static-functions-context-crossover-between-user-sessions 5 Why does my ASP.Net static function's "context" crossover between user sessions? Matt Hamsmith 2009-09-16T19:44:28Z 2009-09-16T20:27:25Z <p>I think I need some help understanding how static objects persist in an ASP.Net application. I have this scenario:</p> <p>someFile.cs in a class library:</p> <pre><code>public delegate void CustomFunction(); public static class A { public static CustomFunction Func = null; } </code></pre> <p>someOtherFile.cs in a class library:</p> <pre><code>public class Q { public Q() { if (A.Func != null) { A.Func(); } } } </code></pre> <p>Some ASP.Net page:</p> <pre><code>Page_Init { A.Func = MyFunc; } public void MyFunc() { System.IO.File.AppendAllText( "mydebug.txt", DateTime.Now.ToString("hh/mm/ss.fff", Session.SessionID)); } Page_Load { Q myQ = new Q(); System.Threading.Thread.Sleep(20000); mQ = new Q(); } </code></pre> <p>The idea is that I have a business object which does some operation based on a callback function at the UI level. I set the callback function to a static variable on Page_Init (in the real code version, in the Master page, if that makes a difference). I thought that every execution of the page, no matter what user session it came from, would go through that function's logic but operate on its own set of data. What seems to be happening instead is a concurrency issue.</p> <p>If I run one user session, then while it is sleeping between calls to that callback function, start another user session, when the first session comes back from sleeping it picks up the session ID from the second user session. How can this be possible?</p> <p>Output of mydebug.txt:</p> <pre><code>01/01/01.000 abababababab (session #1, first call) 01/01/05.000 cdcdcdcdcdcd (session #2, first call - started 5 seconds after session #1) 01/01/21.000 cdcdcdcdcdcd (session #1 returns after the wait but has assumed the function context from session #2!!!!!) 01/01/25.000 cdcdcdcdcdcd (session #2 returns with its own context) </code></pre> <p>Why is the function's context (meaning, its local data, etc.) being overwritten from one user session to another?</p> http://stackoverflow.com/questions/1434937/namespace-functions-versus-static-methods-on-a-class 4 Namespace + functions versus static methods on a class RobertL 2009-09-16T19:15:01Z 2009-09-16T20:03:37Z <p>Let's say I have, or am going to write, a set of related functions. Let's say they're math-related. Organizationally, should I:</p> <ol> <li>Write these functions and put them in my <code>MyMath</code> namespace and refer to them via <code>MyMath::XYZ()</code></li> <li>Create a class called <code>MyMath</code> and make these methods static and refer to the similarly <code>MyMath::XYZ()</code></li> </ol> <p>Why would I choose one over the other as a means of organizing my software?</p> http://stackoverflow.com/questions/189988/inline-class-instantiation-in-php-for-ease-of-method-chaining 5 "Inline" Class Instantiation in PHP? (For Ease of Method Chaining) Max 2008-10-10T02:57:57Z 2009-09-15T21:43:16Z <p>An idiom commonly used in OO languages like Python and Ruby is instantiating an object and chaining methods that return a reference to the object itself, such as:</p> <pre><code>s = User.new.login.get_db_data.get_session_data </code></pre> <p>In PHP, it is possible to replicate this behavior like so:</p> <pre><code>$u = new User(); $s = $u-&gt;login()-&gt;get_db_data()-&gt;get_session_data(); </code></pre> <p>Attempting the following results in <code>syntax error, unexpected T_OBJECT_OPERATOR</code>:</p> <pre><code>$s = new User()-&gt;login()-&gt;get_db_data()-&gt;get_session_data(); </code></pre> <p>It seems like this could be accomplished using static methods, which is probably what I'll end up doing, but I wanted to check the lazyweb: <strong>Is there actually a clean, simple way to instantiate PHP classes "inline" (as shown in the above snippet)</strong> for this purpose?</p> <p>If I do decide to use static methods, <strong>is it too sorcerous to have a class's static method return an instantiation of the class itself</strong>? (Effectively writing my own constructor-that-isn't-a-constructor?) It feels kind of dirty, but if there aren't too many scary side effects, I might just do it.</p> <p>I guess I could also pre-instantiate a UserFactory with a get_user() method, but I'm curious about solutions to what I asked above.</p> http://stackoverflow.com/questions/1384100/class-design-allow-a-class-to-be-used-both-as-an-object-and-also-supply-public-s 0 Class design: allow a class to be used both as an object and also supply public static methods Glytzhkof 2009-09-05T19:32:44Z 2009-09-05T20:22:01Z <p>I have a silly, little class "<strong>FileSystemSize</strong>" which can be used both as an object and also via public, static methods. The output is similar, but not identical in each case.</p> <p>The class was <strong>intially static</strong>, but I added the possibility to initialize it as an object to allow extending with new "<strong>convenience methods</strong>" in future versions, without the need for a lot of parameter parsing. For example I have <strong>GetKBString()</strong>, <strong>GetMBString()</strong>, etc...methods to allow getting the file size conveniently formatted the way I want it (as a string). Internally the class stores the file byte size as a double.</p> <p>I am a bit confused if this makes sense at all. It seems like I should perhaps split this into a static version and an object version like Microsoft does for Directory and DirectoryInfo. However it just seems easier to me to have this all in one place with a name that can't be mistaken - it should be clear what FileSystemSize does? Are there any implications for maintenance that I am not anticipating? What's that smell?</p> <pre><code>var mypath = @"C:\mypath"; var filesystemsize = new FileSystemSize(mypath); string kilobytes = filesystemsize.GetKBString(); string megabytes = filesystemsize.GetMBString(); double bytes = filesystemsize.ByteSize; double staticbytes = FileSystemSize.GetDirectoryBytesSize(new DirectoryInfo(mypath)); double statickilobytes = FileSystemSize.ConvertSize(staticbytes, "KB"); </code></pre> http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt 5 C#: ReSharper complains when method can be static, but isn't Andreas Grech 2009-04-26T05:21:23Z 2009-09-01T09:21:33Z <p>Why does ReSharper complain when a method can become static, but is not?</p> <p>Is it because only one instance of a static method is created (on the type) and thus save on performance? </p> http://stackoverflow.com/questions/1327055/what-are-the-gains-of-converting-normal-method-to-static 4 What are the gains of converting normal method to static? TheVillageIdiot 2009-08-25T09:12:29Z 2009-08-25T09:25:43Z <p>As it is clear from question, if I convert a normal method to static what gains will I made?</p> http://stackoverflow.com/questions/1312772/what-could-go-wrong-with-calling-a-static-method-with-an-object-in-java 3 What could go wrong with calling a static method with an object in Java? Jeremy Powell 2009-08-21T15:46:25Z 2009-08-21T16:56:29Z <p>If I have the following:</p> <pre><code>class A { public A() { } public static void foo() { System.out.println("foo() called"); } } public class Main { public static void main(String [] args) { A a = new A(); a.foo(); // &lt;-- static call using an instance. A.foo(); // &lt;-- static call using class } } </code></pre> <p>Are there any problems that may arise from calling foo() using an instance? Does the JVM treat the first call to foo() exactly as a static method, or is there some technical subtlety?</p> http://stackoverflow.com/questions/1299761/reference-for-the-c-methods-used-in-iphone-development 0 Reference for the C methods used in iPhone development Dimitris 2009-08-19T12:57:33Z 2009-08-19T17:36:59Z <p>Is there a good reference somewhere with all the C functions that can be used by default in iPhone development (I guess they lie in the Foundation framework)? I mean functions like: arc4random(), cos(), sinf(), hypot(), sqrt(), sqrtf() etc...</p> <p>They are so many considering their variations too (sin(), sinf()) and googling every single time is ineffective.</p> <p>Thanks :)</p> http://stackoverflow.com/questions/1292112/what-is-the-best-approach-to-make-data-access-methods-in-nhibernate 1 What is the best approach to make data access methods in NHibernate? Sergey 2009-08-18T06:23:55Z 2009-08-18T09:00:38Z <p>For example, I have two classes: Foo and Bar. This classes are mapped to some tables.</p> <p>As for now, I have static methods for each class: Add, Update, Delete, Get.</p> <pre><code>E.g.: public class Foo { private Guid _id; private string _someProperty; static Foo Get(Guid id); static void Add(Foo foo); static void Update(Foo foo); static void Delete(Foo foo); } </code></pre> <p>So, when i need to do smth with my object i say it like so:</p> <pre><code>Foo foo = Foo.Get(id); Foo newfoo = new Foo(); Foo.Add(newfoo); Foo.Update(newfoo); Foo.Delete(newfoo); </code></pre> <p>Is it a good approach? If it is not, what approach should i use to access data?</p> <p>Thanks</p> http://stackoverflow.com/questions/1284718/are-static-methods-good-for-scalability 0 Are static methods good for scalability ? Silent Warrior 2009-08-16T16:40:37Z 2009-08-17T21:44:29Z <p>Does static methods and class are good for scalability ? I think so static class/method improves scalability of application and instance methods doesn't scales much. So is it good programming practice to write static method where ever it is possible ?</p> http://stackoverflow.com/questions/1286839/how-to-develop-methods-which-has-the-same-functionality-for-some-entities 0 How to develop methods which has the same functionality for some entities? Sergey 2009-08-17T08:48:16Z 2009-08-17T09:06:13Z <p>I have a framework of classes. Each class represents some entity and has basic static methods: Add, Get, Update and Delete. </p> <p>This methods made static because i want to allow perform some action without instantiating of the object. E.g., to add some object i have to do this: Foo.Add(foo).</p> <p>Now i want to have number of methods which would be invoked from another framework for every class. But the functionality of this methods will be the same: for example i want to check if object exists and if it doesn't - create, otherwise - update.</p> <p>What is the best approach to implement it?</p> <p>Should i do it in this way for every class:</p> <p>E.g.:</p> <pre><code>public void DoSomethingWithFoo(Foo foo) { if (Foo.Get(foo.id) != null) Foo.Update(foo); else Foo.Add(foo); } public void DoSomethingWithBar(Bar bar) { if (Bar.Get(bar.id) != null) Bar.Update(bar); else Bar.Add(bar); } </code></pre> <p>Or is it better to do it using InvokeMember(according to idea to have all the code in one place)?</p> <p>E.g.:</p> <pre><code> public void DoSomethingWithFoo(Foo foo) { DoSomethingWithObject(foo); } private void DoSomethingWithObject(object obj) { Type type = obj.GetType(); object[] args = {type.GetProperty("ID").GetValue(obj, null)}; object[] args2 = { obj }; if (type.InvokeMember("Get", BindingFlags.Default | BindingFlags.InvokeMethod, null, null, args) != null) { type.InvokeMember("Update", BindingFlags.Default | BindingFlags.InvokeMethod, null, null, args2); } else { type.InvokeMember("Add", BindingFlags.Default | BindingFlags.InvokeMethod, null, null, args2); } } </code></pre> <p>What approach is better and more cleaner? Or maybe you will suggest another approach?</p> <p>Thanks</p> http://stackoverflow.com/questions/420895/how-do-i-know-if-a-c-method-is-thread-safe 9 How do I know if a C# method is thread safe? MatthewMartin 2009-01-07T16:06:43Z 2009-08-12T18:21:52Z <p>I'm working on creating a call back function for an ASP.NET cache item removal event.</p> <p>The documentation says I should call a method on an object or calls I know will exist (will be in scope), such as a static method, but it said I need to ensure the static is thread safe.</p> <p>Part 1: What are some examples of things I could do to make it un-thread safe?</p> <p>Part 2: Does this mean that if I have</p> <pre><code>static int addOne(int someNumber){ int foo = someNumber; return foo +1; } </code></pre> <p>and I call Class.addOne(5); and Class.addOne(6); simutaneously, Might I get 6 or 7 returned depending on who which invocation sets foo first? (i.e. a race condition)</p> http://stackoverflow.com/questions/441265/how-to-setup-an-object-creation-interface-rule-in-c 1 How to setup an Object Creation Interface "rule" in C#? Larsenal 2009-01-13T23:13:14Z 2009-07-31T15:50:06Z <p>The general rule is that I want to say, "T has a method with a String parameter which will return List." Put verbosely, we might call the interface ICanCreateListOfObjectsFromString. A possible application might be search.</p> <p>It feels like it'd be nice to have a static method in my interface, but I know that's not allowed in C#. What is another approach to specify this kind of contract implementation on a class?</p> <p>Edit: I would like to have the following code:</p> <pre><code>public interface ISearch { static List&lt;T&gt; Search&lt;T&gt;(String s); } public class MyObject : ISearch { List&lt;MyObject&gt; Search(string s) { //... } } public List&lt;T&gt; DoFooSearch&lt;T:ISearch&gt; () { return T.Search("Foo"); } public List&lt;T&gt; DoBarSearch&lt;T:ISearch&gt; () { return T.Search("Bar"); } </code></pre> <p>You can probably see why this code won't compile, but it expresses the spirit of what I'd like to achieve. I hope this clarifies my intention a bit.</p>