User vanslly - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T09:22:07Z http://stackoverflow.com/feeds/user/27765 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/202079/wpf-versus-winforms 15 WPF versus Winforms vanslly 2008-10-14T17:28:35Z 2009-11-07T17:23:23Z <ol> <li>What are the advantages and disadvantages between using WPF (Windows Presentation Foundation) over Winforms?</li> <li>What are the considerations that need to be made when choosing between the two?</li> </ol> <p>Thanks.</p> http://stackoverflow.com/questions/1418630/how-to-prevent-sql-injection/1418634#1418634 4 Answer by vanslly for How to Prevent SQL Injection? vanslly 2009-09-13T19:25:49Z 2009-09-13T19:25:49Z <p>Parameterized Queries</p> http://stackoverflow.com/questions/729267/rhino-mocks-assertwascalled-multiple-times-on-property-getter-using-aaa/1390886#1390886 0 Answer by vanslly for Rhino Mocks AssertWasCalled (multiple times) on property getter using AAA. vanslly 2009-09-07T20:40:49Z 2009-09-07T20:40:49Z <p>Depending on your version of Rhino you are using, you can use:</p> <pre><code>// Call to mock object here LastCall.IgnoreArguments().Repeat.Never(); </code></pre> http://stackoverflow.com/questions/1364763/obtaining-clientcredentials-from-wcf-operation 0 Obtaining ClientCredentials from WCF operation vanslly 2009-09-01T21:36:49Z 2009-09-02T00:09:27Z <p>My WCF Service uses a custom credentials validator for custom Message-based security, because I want to ensure each client calling an operation on my web service has a corresponding username and password in my database.</p> <pre><code>Imports System.IdentityModel.Selectors Imports System.IdentityModel.Tokens Public Class CredentialsValidator Inherits UserNamePasswordValidator Public Overrides Sub Validate(ByVal userName As String, ByVal password As String) Dim authenticationApi As New AuthenticationGateway() If Not authenticationApi.IsValid(userName, password) Then Throw New SecurityTokenException("Validation Failed.") End If End Sub End Class </code></pre> <p>Thing is, once the user passes authentication I want to use the userName in my OperationContract implementations to make context based calls.</p> <pre><code>&lt;ServiceContract(Name:="IMyService")&gt; _ Public Interface IMyService &lt;OperationContract()&gt; _ Function GetAccountNumber() As String End Interface Public Class IntegrationService Implements IIntegrationService Public Function GetAccountNumber() As String Implements IMyService.GetAccountNumber Dim userName As String '' Here I want the userName set from credentials Dim accountApi As New AccountGateway() Return accountApi.GetAccountNumber(userName) End Function End Class </code></pre> <p>I cant rely on the honesty of the callees to specify their actual userName so can't pass it without also passing in a password. I wanted to avoid having every single call to my web service having to accept the ClientCredentials.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1364763/obtaining-clientcredentials-from-wcf-operation/1365161#1365161 1 Answer by vanslly for Obtaining ClientCredentials from WCF operation vanslly 2009-09-01T23:30:42Z 2009-09-01T23:30:42Z <pre><code>Public Class IntegrationService Implements IIntegrationService Private ReadOnly Property UserName As String Get Return ServiceSecurityContext.Current.PrimaryIdentity.Name End Get End Property Public Function GetAccountNumber() As String Implements IMyService.GetAccountNumber Dim accountApi As New AccountGateway() Return accountApi.GetAccountNumber(UserName) End Function End Class </code></pre> http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class 3 What's the best way to change the namespace of a highly referenced class? vanslly 2009-05-12T03:44:45Z 2009-08-24T16:10:05Z <p>I am attempting to move a highly referenced class from one namespace to another. Simply moving the file into the new project which has a different root namespace results in over 1100 errors throughout my solution.</p> <p>Some references to the class involve fully qualified namescape referencing and others involve the importing of the namespace.</p> <p>I have tried using a refactoring tool (Refactor Pro) to rename the namespace, in the hope all references to the class would change, but this resulted in the aforementioned problem.</p> <p>Anyone have ideas of how to tackle this challenge without needing to drill into every file manually and changing the fully qualified namespace or importing the new one if it doesn't exist already?</p> <p>Thanks.</p> http://stackoverflow.com/questions/670566/path-combine-absolute-with-relative-path-strings/1299356#1299356 2 Answer by vanslly for Path.Combine absolute with relative path strings vanslly 2009-08-19T11:33:41Z 2009-08-19T11:33:41Z <p><strong>What Works:</strong></p> <pre><code>string relativePath = "..\\bling.txt"; string baseDirectory = "C:\\blah\\"; string absolutePath = Path.GetFullPath(baseDirectory + relativePath); </code></pre> <p>(result: absolutePath="C:\blah\bling.txt") </p> <p><strong>What doesn't work</strong></p> <pre><code>string relativePath = "..\\bling.txt"; Uri baseAbsoluteUri = new Uri("C:\\blah\\"); string absolutePath = new Uri(baseAbsoluteUri, relativePath).AbsolutePath; </code></pre> <p>(result: absolutePath="C:/blah/bling.txt") </p> http://stackoverflow.com/questions/555197/what-is-the-vb-net-select-case-statement-logic-with-case-or-ing 2 What is the VB.NET select case statement logic with case OR-ing vanslly 2009-02-17T00:57:12Z 2009-08-19T08:47:17Z <p>When writing some vb code I tripped and I'm still left wondering why. I was ORing the case expectation yet a value lieing within this range didn't warrant a match; why not?</p> <p>Example Code:</p> <pre><code> Select Case 2 Case 0 ''// Some logic Case 1 ''// Some other logic Case 2 Or 3 Console.WriteLine("hit") End Select </code></pre> <p>With the above I would naturally assume that "hit" would be printed, but that's not the case.</p> http://stackoverflow.com/questions/551915/sql-temp-table-sharing-accross-different-sql-readers 0 SQL temp table sharing accross different SQL readers vanslly 2009-02-16T00:25:43Z 2009-06-16T18:54:28Z <p>I am trying to do a many different queries on a result set which has a <em>very</em> large creation time. To get performance gains I wish to use a temp table and just do many queries on this temp table.</p> <p>Seems pretty standard. Yet I am struggling to share this temp table in dynamic sql. As I understand it, each SqlCommand object executes in its own thread and so the temp table is in a different scope - thus making it inaccessible from the query thread.</p> <p>I tried using a global temporary table and that works great, but not ideal?</p> <p>How can I share a local temporary table between dynamic SQL queries?</p> <p>My intent:</p> <pre><code>using (var conn = new SqlClient.SqlConnection("...")) { // Creation involes many table joins in reality String creationScript = "SELECT * FROM FooTable INTO #MyTemp"; SqlCommand createTempTbl = new SqlCommand(creationScript, conn); createTempTbl.ExecuteNonQuery(); String query1 = "SELECT * FROM #MyTemp where id=@id"; SqlCommand query1Comm = new SqlCommand(query1, conn); query1Comm.Parameters.Add("@id", ...); String query2 = "SELECT * FROM #MyTemp where name=@name"; SqlCommand query2Comm = new SqlCommand(query2, conn); query2Comm.Parameters.Add("@name", ...); // And so on the queries go } // Now want #MyTemp to be destroyed </code></pre> http://stackoverflow.com/questions/890487/is-software-development-a-discipline-of-engineering-or-a-discipline-of-arts 8 Is software development a discipline of engineering or a discipline of arts? vanslly 2009-05-20T22:02:39Z 2009-05-21T02:44:08Z <p>A <a href="http://blogs.msdn.com/brada/archive/2004/04/13/112619.aspx" rel="nofollow">post</a> I read on Brad Abrams blog had this very question and I would love to get the views of the community.</p> <p>Software is being taught as an engineering discipline in many universities, even though the field is so young that questions regarding what consitutes good design, in terms of what is measurable, cannot yet be answered all that well without simply resorting to good arguments and drawing from experience.</p> <p>So, as it stands now; do you view software development as a discipline of engineering or as a discipline of arts, and what's your reasoning?</p> http://stackoverflow.com/questions/732331/ideas-for-summer-java-project/732343#732343 2 Answer by vanslly for Ideas for Summer Java project vanslly 2009-04-09T00:00:36Z 2009-04-09T00:00:36Z <p>What about an image pane where you can add images, resize, change opacity, rotate and that type of thing. Then provide the ability to save these views.</p> <p>This will provide you an opportunity to implement command pattern and show how easy it is to have undo/redo commands as well.</p> http://stackoverflow.com/questions/539733/what-method-of-data-validation-is-most-appropriate-for-large-data-sets 1 What method of data validation is most appropriate for large data sets vanslly 2009-02-12T02:15:50Z 2009-04-03T07:06:23Z <p>I have a large database and want to implement a feature which would allow a user to do a bulk update of information. The user downloads an excel file, makes the changes and the system accepts the excel file.</p> <ol> <li>The user uses a web interface (ASP.NET) to download the data from database to Excel.</li> <li>User modifies the Excel file. Only certain data is allowed to be modified as other map into the DB.</li> <li>Once the user is happy with their changes they upload the changed Excel file through the ASP.NET interface.</li> <li>Now it's the server's job to suck data from the Excel file (using Gembox) and validate the data against the database (this is where I'm having the trouble)</li> <li>Validation results are shown on another ASP.NET page after validation is complete. Validation is soft and so hard fails <strong>only</strong> occur when say an index mapping into DB is missing. (Missing data causes ignore, etc)</li> <li>User can decide whether the actions that will be taken are appropriate, in accepting these the system will apply the changes. (Add, Modify, or Ignore)</li> </ol> <p>Before applying the changes and/or additions the user has made, the data must be validated to avoid mistakes by the user. (The accidentally deleted dates which they didn't mean to)</p> <p>It's not far fetched for the rows that need updating to reach over 65k.</p> <p>The question is: <strong>What is the best way to parse the data to do validation and to build up the change and addition sets?</strong></p> <p>If I load all data that the excel data must be validated against into memory I might unnecessarily be affecting the already memory hungry application. If I do a database hit for every tuple in the excel file I am looking at over 65k database hits.</p> <p>Help?</p> http://stackoverflow.com/questions/567386/when-is-it-ok-to-use-the-goto-statement-in-vb-net/567442#567442 0 Answer by vanslly for When is it OK to use the GoTo statement in VB.Net? vanslly 2009-02-19T22:07:05Z 2009-02-19T22:07:05Z <p>I'd say use very sparingly as it's generally associated with introducing spagetti code. Try using methods instead of Labels.</p> <p>A good case I think for using GOTO is to create a flow through select which is available in C# but not VB.</p> http://stackoverflow.com/questions/523246/using-custom-ttf-font-for-image-rendering 0 Using custom TTF font for Image rendering vanslly 2009-02-07T06:00:48Z 2009-02-07T07:31:29Z <p>I am using Gdi+ on the server-side to create an image which is streamed to the user's browser. None of the standard fonts fit my requirements and so I want to load a TrueType font and use this font for drawing my strings to the graphics object:</p> <pre><code> using (var backgroundImage = new Bitmap(backgroundPath)) using (var avatarImage = new Bitmap(avatarPath)) using (var myFont = new Font("myCustom", 8f)) { Graphics canvas = Graphics.FromImage(backgroundImage); canvas.DrawImage(avatarImage, new Point(0, 0)); canvas.DrawString(username, myFont, new SolidBrush(Color.Black), new PointF(5, 5)); return new Bitmap(backgroundImage); } </code></pre> <p>"myCustom" represents a font that is not installed on the server, but for which I have the TTF file for.</p> <p>How can I load the TTF file so that I can use it in GDI+ string rendering? Thanks.</p> http://stackoverflow.com/questions/523246/using-custom-ttf-font-for-image-rendering/523388#523388 3 Answer by vanslly for Using custom TTF font for Image rendering vanslly 2009-02-07T07:31:29Z 2009-02-07T07:31:29Z <p>I've found a solution to using custom fonts.</p> <pre><code>// 'PrivateFontCollection' is in the 'System.Drawing.Text' namespace var foo = new PrivateFontCollection(); // Provide the path to the font on the filesystem foo.AddFontFile("..."); var myCustomFont = new Font((FontFamily)f.Families[0], 36f); </code></pre> <p>Now <code>myCutomFont</code> can be used with the Graphics.DrawString method as intended.</p> http://stackoverflow.com/questions/509910/testing-io-stream-interaction 1 Testing IO.Stream interaction vanslly 2009-02-04T02:51:31Z 2009-02-04T03:06:27Z <p>I have a method in my business logic layer that accepts a stream, which in the GUI comes from a user uploading a file, and I am interested in which is an appropriate way to test that the method appropriately uses this stream to make decisions.</p> <pre><code>public Sub Initialize(ByVal uploadStream As Stream) ' Logic using uploadStream End Sub </code></pre> <p>For testing purposes I wish to DI a mocked stream into this method, but I find a stiffling lack of abstraction whenever working with streams.</p> <p>Intuition tells me that a need to create a Stream wrapper which would allow me to DI an interface of the wrapper to test interaction of my logic with the stream wapper.</p> <p>What's the best way to proceed?</p> http://stackoverflow.com/questions/505305/class-design-entity-id-vs-entity-reference/505379#505379 1 Answer by vanslly for Class design: entity ID vs entity reference vanslly 2009-02-02T23:09:16Z 2009-02-02T23:09:16Z <p>As a general rule I try to avoid chaining, because it usually introduces unncessary tight coupling. All depends on the context, but in terms of business objects it might be a good idea to keep the entities loosely coupled so they can grow independently.</p> <p>In the example you provide I don't think tight coupling is warranted. If the intersection was greater this might be warranted, but this isn't the general case with Business entities, I've found.</p> http://stackoverflow.com/questions/499902/generic-interface-as-a-method-parameter-and-seeing-fields/500002#500002 3 Answer by vanslly for Generic interface as a method parameter and seeing fields vanslly 2009-02-01T01:46:01Z 2009-02-01T01:46:01Z <p>Bad Design (as I think was described in the question):</p> <pre><code>public interface IEntry { string Description { get; set; } } public class Bug : IEntry { public int ID { get; set; } public string Description { get; set; } public string UserName { get; set; } } public class Incident : IEntry { public Guid ID { get; set; } public string Description { get; set; } } public class Persister { public void Save(IEnumerable&lt;IEntry&gt; values) { foreach (IEntry value in values) { Save(value); } } public void Save(IEntry value) { if (value is Bug) { /* Bug save logic */ } else if (value is Incident) { /* Incident save logic */ } } } </code></pre> <p>Improved design (smart entity approach):</p> <pre><code>public interface IEntry { string Description { get; set; } void Save(IPersister gateway); } public class Bug : IEntry { public int ID { get; set; } public string Description { get; set; } public string UserName { get; set; } public void Save(IPersister gateway) { gateway.SaveBug(this); } } public class Incident : IEntry { public Guid ID { get; set; } public string Description { get; set; } public void Save(IPersister gateway) { gateway.SaveIncident(this); } } public interface IPersister { void SaveBug(Bug value); void SaveIncident(Incident value); } public class Persister : IPersister { public void Save(IEnumerable&lt;IEntry&gt; values) { foreach (IEntry value in values) { Save(value); } } public void Save(IEntry value) { value.Save(this); } public void SaveBug(Bug value) { // Bug save logic } public void SaveIncident(Incident value) { // Incident save logic } } </code></pre> <p>The improved design is only caters for the need to shift the need for change of Persister.Save(IEntry). I just wanted to demonstrate a first step to make the code less brittle. In reality and production code you would want to have a BugPersister and IncidentPersister class in order to conform to the <a href="http://www.objectmentor.com/resources/articles/srp.pdf" rel="nofollow">Single Responsibility principle</a>.</p> <p>Hope this more code-centric example is a help.</p> http://stackoverflow.com/questions/498363/what-constitutes-redundant-delegate-creation 3 What constitutes 'redundant delegate creation'? vanslly 2009-01-31T05:54:30Z 2009-01-31T06:02:08Z <p>I was registering to an event in my class, and as per usual I was lazy and just use the autocomplete feature built into Visual Studio 2008 Pro which auto creates the delegate creation and it's associated method.</p> <pre><code>public abstract class FooBase { protected event EventHandler&lt;MyValueChangedArgs&gt; MyValueChanged; protected FooBase() { MyValueChanged += new EventHandler&lt;MyValueChangedArgs&gt;(HandleMyValueChanged); } private void HandleMyValueChanged(object sender, MyValueChangedArgs e) { // Some handling logic } } </code></pre> <p>Usually I dont think twice when Visual Studio gens the event handler for me, but then I received a recommendation from Refactor! Pro to "Remove Redundant Delegate Creation". The recommendation results in:</p> <pre><code>public abstract class FooBase { protected event EventHandler&lt;MyValueChangedArgs&gt; MyValueChanged; protected FooBase() { MyValueChanged += HandleMyValueChanged; } private void HandleMyValueChanged(object sender, MyValueChangedArgs e) { // Some handling logic } } </code></pre> <p>Under what circumstances is delegate creation redundant and when is delegate creation appropriate?</p> <p>Thanks.</p> http://stackoverflow.com/questions/498200/how-to-best-clean-up-resources-for-net-application/498218#498218 2 Answer by vanslly for How to best clean up resources for .NET application? vanslly 2009-01-31T04:06:45Z 2009-01-31T04:06:45Z <p>If your implementation is whiteboxed then calling Close on file stream should close it's memory stream.</p> <p>If class implements IDisposable just use the using block if in C# so the resource will be disposed:</p> <pre><code>using (var foo = new Foo()) { // Do some stuff to foo } </code></pre> <p>If you are writing a wrapper that will consume memory intensively then I recommend implementing <a href="http://msdn.microsoft.com/en-us/library/system.idisposable.aspx" rel="nofollow">IDisposable</a>.</p> http://stackoverflow.com/questions/498002/generics-using-public-interfaces-and-internal-type-parameters/498107#498107 2 Answer by vanslly for Generics using public interfaces and internal type parameters vanslly 2009-01-31T02:53:51Z 2009-01-31T03:11:59Z <p>This constraint you are facing makes sense for the following reason.</p> <p>C# is strongly typed so...</p> <p>To be able to reference the MySpecificClass outside the scope of the assembly it is defined in you must know its parameter types in order to generate a strong type reference to its instance; but an separate assembly than the internal definition does not know about MyInternalConcrete.</p> <p>Thus the following wont work if in a separate assembly:</p> <pre><code>MyClass&lt;MyInternalConcrete&gt; myInstance = new MySpecificClass(); </code></pre> <p>Here the separate assembly doesn't know of MyInternalConcrete, so how can you define a variable as such.</p> http://stackoverflow.com/questions/482510/generate-a-c-delegate-method-stub/482513#482513 3 Answer by vanslly for Generate a C# delegate method stub vanslly 2009-01-27T06:59:23Z 2009-01-27T07:04:25Z <p>Use an IDE plugin like Refactor Pro! It also allows you to convert your delegates to instance methods, or if its a one-liner, into a lambda. I tend to start typing using a lambda and then hovering my cursor over the parms gives you the types available.</p> <p>Or. Wait till Visual Studio 10 which would have this all built in. But until then use either of the aforementioned :)</p> http://stackoverflow.com/questions/481817/what-are-the-biggest-gotchas-in-silverlight-2-0/481930#481930 3 Answer by vanslly for What are the biggest gotchas in Silverlight 2.0? vanslly 2009-01-27T00:28:44Z 2009-01-27T00:28:44Z <p>A while back I did a project in Silverlight 2.0 and the project was driven using TDD and MVP. My service references were located in a seperate assembly so the view need not know of the model. I had a gotcha with the location of the <strong>ServiceReferences.ClientConfig</strong> file which needs to be in the view's assembly!</p> <p>This file is generated if you add a service reference. We were added a WCF Web Service, but I was new to Silverlight and so didn't know that the Silverlight applications are compiled and packaged as a XAP.</p> <p>If your <strong>ServiceReferences.ClientConfig</strong> file isn't located inside this XAP you have problems.</p> <p>So there's my two cents worth. I posted this a while back on the Silverlight forums and it seems I'm not the only one this gotcha applied to.</p> <p><a href="http://silverlight.net/forums/p/18528/165341.aspx#165341" rel="nofollow">My Original Post</a></p> http://stackoverflow.com/questions/476348/that-a-ha-moment-for-understanding-oo-design-in-c/477160#477160 1 Answer by vanslly for That A-Ha Moment for Understanding OO Design in C# vanslly 2009-01-25T04:31:59Z 2009-01-25T04:31:59Z <p>Object Oriented design in general requires mental snuggling, but for me C-type OOD seemed rather natural after the university using JAVA to teach us OOD.</p> <p>After much practice with hobby projects where an elegant architecture is required to meet some of the use cases - OOP seem to become more and more automatic.</p> http://stackoverflow.com/questions/476942/raising-event-from-base-class/476992#476992 1 Answer by vanslly for Raising event from base class vanslly 2009-01-25T00:54:38Z 2009-01-25T04:13:48Z <p>The final result:</p> <pre><code>public interface IFoo { event EventHandler&lt;FooEventArgs&gt; FooValueChanged; void RaiseFooValueChanged(IFooView sender, FooEventArgs e); } [TypeDescriptionProvider(typeof(FooBaseImplementor))] public abstract class FooBase : Control, IFoo { protected event EventHandler&lt;FooEventArgs&gt; backEndStorage; public abstract event EventHandler&lt;FooEventArgs&gt; FooValueChanged; public void RaiseFooValueChanged(IFooView sender, FooEventArgs e) { if (backEndStorage != null) backEndStorage(sender, e); } } public class FooDerived : FooBase { public override event EventHandler&lt;FooEventArgs&gt; FooValueChanged { add { backEndStorage += value; } remove { backEndStorage -= value; } } } </code></pre> http://stackoverflow.com/questions/476942/raising-event-from-base-class 2 Raising event from base class vanslly 2009-01-25T00:15:03Z 2009-01-25T04:13:48Z <p>I understand that one can raise an event in the class that the implementation declaration occurs, but I wish to raise the event at the base class level and have the derived class's event be raised:</p> <pre><code>public interface IFoo { event EventHandler&lt;FooEventArgs&gt; FooValueChanged; void RaiseFooValueChanged(IFooView sender, FooEventArgs e); } [TypeDescriptionProvider(typeof(FooBaseImplementor))] public abstract class FooBase : Control, IFoo { public virtual event EventHandler&lt;FooEventArgs&gt; FooValueChanged; public void RaiseFooValueChanged(IFooView sender, FooEventArgs e) { FooValueChanged(sender, e); } } </code></pre> <p>I cannot have the FooValueChanged event abstract, because then the base class cannot raise the event. Current the code runs, but the call FooValueChanged(sender, e) throws a NullReferenceException because it doesn't call the derived class's event, only that of the base class.</p> <p>Where am I going wrong?</p> <p>I can have the event and the raiser both abstract, but then I need to remember to call FooValueChanged(sender, e) in every single derived class. I'm trying to avoid this while being able to use the Visual Studio designer for derived controls.</p> http://stackoverflow.com/questions/464831/what-are-the-benefits-of-listt-find-over-alternatives 0 What are the benefits of List<T>.Find over alternatives? vanslly 2009-01-21T11:01:01Z 2009-01-21T11:09:58Z <p>Recently I used a predicate to describe search logic and passed it to the Find method of a few Lists.</p> <pre><code>foreach (IHiscoreBarItemView item in _view.HiscoreItems) { Predicate&lt;Hiscore&gt; matchOfHiscoreName = (h) =&gt; h.Information.Name.Equals(item.HiscoreName); var current = player.Hiscores.Find(matchOfHiscoreName); item.GetLogicEngine().ForceSetHiscoreValue(current as Skill); var goal = player.Goals.Find(matchOfHiscoreName); item.GetLogicEngine().ForceSetGoalHiscoreValue(goal as Skill); } </code></pre> <p>Are there any benefits, apart from 'less code', from using the aforementioned approach over an alternative.</p> <p>I am particularly interested in performance.</p> <p>Thanks</p> http://stackoverflow.com/questions/456596/how-to-persist-attributes-of-asp-net-user-controls 0 How to persist attributes of ASP.NET User controls vanslly 2009-01-19T05:18:41Z 2009-01-19T21:41:16Z <p>I have a ASP.NET user control which hosts a 'HtmlImage'. The src attribute is successfully set at run-time, but adding the rendered control to another container causes a loss of the src attribute.</p> <p>The rendered control is stored in Session (I know this is not ideal). Then a redirect is done to another page which uses the control in Session.</p> <p>Perhaps it's because the url is not encoded?</p> <p>Code: </p> <pre><code>&lt;img id="ctlImage" runat="server" style="border-style: none;" /&gt; ctlImage.Src = String.Format("..\image.aspx?{0}", "...") </code></pre> http://stackoverflow.com/questions/358793/design-pattern-for-methods-in-another-class/358908#358908 0 Answer by vanslly for Design pattern for methods in another class vanslly 2008-12-11T10:27:07Z 2008-12-11T17:15:44Z <p>What you describe is not really a pattern, but instead a programming principle called '<strong>Separation of Concerns</strong>'.</p> <p>From your description I would strongly argue that you after a structural design pattern, not a creational design pattern since allocation of coding concerns is discussed over creational complicity.</p> <p>So, my best guess is that the pattern you are after is perhaps the <strong>Facade Pattern</strong> or <strong>Gateways</strong>. It is common to use Entities (your clsClass) with Gateways.</p> <p>I would however not necessarily encourage jumping into making your methods static however since then these cannot be mocked during testing of Business Logic. You would want to mock these types of methods that return data access objects if they form the application's data layer since you don't want to hit the data base when business logic depends on these gateways/facades.</p> <pre><code>public class clsClass { public int ID; public string title; public string author; public string article; } public class BookGateway { public List&lt;clsClass&gt; GetAllArticles() { var result = new List&lt;clsClass&gt;(); // Add items here. // Can call database and populate each new clsClass // and add to result object. return result; } } </code></pre> http://stackoverflow.com/questions/238660/difference-of-two-uint 9 Difference of two 'uint' vanslly 2008-10-26T21:28:23Z 2008-12-04T17:47:40Z <p>When you attempt to declare an unsigned variable in C#.NET with a value outside its value range it is flagged as a compiler error, but if you produce a negative value at runtime and assign it to that variable at runtime the value wraps.</p> <pre><code>uint z = -1; // Will not compile uint a = 5; uint b = 6; uint c = a - b; // Will result in uint.MaxValue </code></pre> <p>Is there a good reason why unsigned variables wrap in such a situation instead of throwing an exception?</p> <p>Thanks.</p> http://stackoverflow.com/questions/670566/path-combine-absolute-with-relative-path-strings/1299356#1299356 Comment by vanslly on Path.Combine absolute with relative path strings vanslly 2009-10-28T19:32:04Z 2009-10-28T19:32:04Z Yes, that is what I am insinuating with the post http://stackoverflow.com/questions/1456518/how-to-obtain-a-list-of-constants-in-a-class-and-their-values/1456596#1456596 Comment by vanslly on How to obtain a list of constants in a class and their values vanslly 2009-09-21T20:30:36Z 2009-09-21T20:30:36Z That's a nice solution :) http://stackoverflow.com/questions/1456518/how-to-obtain-a-list-of-constants-in-a-class-and-their-values/1456538#1456538 Comment by vanslly on How to obtain a list of constants in a class and their values vanslly 2009-09-21T20:07:27Z 2009-09-21T20:07:27Z Enums in VB.NET cannot contain strings as values. In Java they can. http://stackoverflow.com/questions/1384147/ioc-are-at-the-class-level-but-what-about-database-conflicts/1384154#1384154 Comment by vanslly on IOC are at the class level, but what about database conflicts? vanslly 2009-09-05T20:20:25Z 2009-09-05T20:20:25Z This substitution ability you refer to is known as the Liskov Substitution Principle. http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class Comment by vanslly on What's the best way to change the namespace of a highly referenced class? vanslly 2009-06-18T23:21:19Z 2009-06-18T23:21:19Z For those striking this problem. I tried Resharper, which made a real mess of things. In the end a basic 'Replace in Files' did the job. Technique for this was to replace all highly qualified references first and then lesser qualified and then manually fixing the imports. This took me 30 minutes all up. Cross cutting concerns are a pain. http://stackoverflow.com/questions/890487/is-software-development-a-discipline-of-engineering-or-a-discipline-of-arts Comment by vanslly on Is software development a discipline of engineering or a discipline of arts? vanslly 2009-05-20T22:52:01Z 2009-05-20T22:52:01Z Software being taught as an engineering descipline (Computer Science, Development Cycle, Software Design) in universities, but is still pretty young. http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/851059#851059 Comment by vanslly on What's the best way to change the namespace of a highly referenced class? vanslly 2009-05-12T04:22:01Z 2009-05-12T04:22:01Z Using Visual Studio 2008 Standard Edition to correct each of the 1100+ errors is a manual process and takes much time. ReSharper is an option, but adding another refactoring tool for namespace changing seems overkill. http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/851059#851059 Comment by vanslly on What's the best way to change the namespace of a highly referenced class? vanslly 2009-05-12T04:03:49Z 2009-05-12T04:03:49Z This is exactly what I want to avoid. Going into each one of the files to correct 1100+ errors doesn't seem very productive use of developer time. http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/851061#851061 Comment by vanslly on What's the best way to change the namespace of a highly referenced class? vanslly 2009-05-12T04:01:54Z 2009-05-12T04:01:54Z Definitely an option, I would prefer not needing to fork out a bunch of cash for a namespace change though :) http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/851067#851067 Comment by vanslly on What's the best way to change the namespace of a highly referenced class? vanslly 2009-05-12T03:56:30Z 2009-05-12T03:56:30Z For starters it's VB, not a C-based language, but the idea of specifying both can be done with regular expression global replace. But, then I get over 500 error where the namespace is imported twice :) http://stackoverflow.com/questions/758670/how-can-we-encourage-people-to-ask-better-questions/758675#758675 Comment by vanslly on How can we encourage people to ask better questions vanslly 2009-04-17T02:01:20Z 2009-04-17T02:01:20Z And there's an 'edit' option for the author. And reputable users can edit. Etc. http://stackoverflow.com/questions/758670/how-can-we-encourage-people-to-ask-better-questions Comment by vanslly on How can we encourage people to ask better questions vanslly 2009-04-17T01:54:52Z 2009-04-17T01:54:52Z ... I feel a great urge to fix the spelling errors in the question ... http://stackoverflow.com/questions/758340/how-do-i-design-a-sub-class-with-features-not-available-in-the-base-class/758497#758497 Comment by vanslly on How do I design a sub class with features not available in the base class? vanslly 2009-04-17T00:16:53Z 2009-04-17T00:16:53Z Good answer. The questioner is attemtping to violate OOD priciples which is a design flaw, most notably LSP. http://stackoverflow.com/questions/567386/when-is-it-ok-to-use-the-goto-statement-in-vb-net Comment by vanslly on When is it OK to use the GoTo statement in VB.Net? vanslly 2009-02-19T22:07:43Z 2009-02-19T22:07:43Z I don't think you gave a particularly useful use of the GOTO statement. I consider using GOTOs for such trivial control flow bad practice as you should be using a method to commit and close the Repo. http://stackoverflow.com/questions/555197/what-is-the-vb-net-select-case-statement-logic-with-case-or-ing/555214#555214 Comment by vanslly on What is the VB.NET select case statement logic with case OR-ing vanslly 2009-02-17T02:37:00Z 2009-02-17T02:37:00Z True, and I was using the To keyword, but it's slightly hacky because if say 2 and 3 were Enum vals and the enum gets refactored without taking this use into consideration - which if it's in some class deep in the bowels of a large system - then you have some unexpected breaks ;)