User Timothy Carter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T03:43:37Z http://stackoverflow.com/feeds/user/4660 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1846975/how-do-you-embed-app-config-in-c-projects/1847026#1847026 1 Answer by Timothy Carter for How do you embed app.config in C# projects? Timothy Carter 2009-12-04T13:43:09Z 2009-12-04T13:43:09Z <p>Typically the theory of a configuration file, is that it stores settings you may want to change once you've deployed the application (for something like user preferences). To do this, you need to be storing somewhere external to your application. If you use the default setup, you get "[Your].exe.config". There are many other options you could look at, but nearly every one of them ends up with a file written somewhere, if you providing a mechanism that saves settings of some kind.</p> http://stackoverflow.com/questions/84211/fade-splash-screen-in-and-out 2 Fade splash screen in and out Timothy Carter 2008-09-17T15:04:32Z 2009-11-09T13:06:21Z <p>In a C# windows forms application. I have a splash screen with some multi-threaded processes happening in the background. What I would like to do is when I display the splash screen initially, I would like to have it appear to "fade in". And then, once all the processes finish, I would like it to appear as though the splash screen is "fading out". I'm using C# and .NET 2.0. Thanks.</p> http://stackoverflow.com/questions/6067/finding-good-small-software-companies/1548669#1548669 0 Answer by Timothy Carter for Finding good small software companies Timothy Carter 2009-10-10T18:14:36Z 2009-10-10T18:14:36Z <p>Now offered by <a href="http://blog.stackoverflow.com/2009/10/introducing-stack-overflow-careers/" rel="nofollow">stackoverflow</a>, with potential to link to your SO activity, <a href="http://careers.stackoverflow.com/" rel="nofollow">careers.stackoverflow.com</a>.</p> http://stackoverflow.com/questions/1517686/foreach-in-c-recalcualtion/1517693#1517693 5 Answer by Timothy Carter for foreach in C# recalcualtion Timothy Carter 2009-10-04T23:18:52Z 2009-10-05T04:02:52Z <p><code>veryComplicatedFunction</code> likely returns <a href="http://msdn.microsoft.com/en-us/library/9eekhta0.aspx" rel="nofollow"><code>IEnumerable&lt;string&gt;</code></a>, which should mean that it's calculations are performed only once and it streams its results in some way. However, without seeing the actual method, there is no way to guarantee what it does. What is guaranteed is that <code>veryComplicatedFunction</code> is only called once, what the <code>foreach</code> does is iterate through the returns of a method.</p> http://stackoverflow.com/questions/1507153/c-how-can-i-verify-methods-are-called-in-a-certain-order/1507166#1507166 3 Answer by Timothy Carter for c#: How can I verify methods are called in a certain order? Timothy Carter 2009-10-02T00:14:17Z 2009-10-02T00:14:17Z <p>You shouldn't need to test what order methods are called in. You should be testing to ensure that the proper effects have happened because you called the <code>Print</code> method.</p> <p>However, if you really have to do this, I think the best way would be to create a mock IPrinter that stores the order functions were called, and the parameters that were passed, which can then be asserted in Tests.</p> http://stackoverflow.com/questions/1472947/help-me-find-some-good-c-threading-tutorials/1472951#1472951 6 Answer by Timothy Carter for Help me find some good C# Threading Tutorials? Timothy Carter 2009-09-24T16:58:37Z 2009-09-24T17:04:26Z <p>From Jon Skeet, a <a href="http://www.yoda.arachsys.com/csharp/threads/" rel="nofollow">16-part walk through</a> of different scenarios, challenges and options for programming with threads in .NET. This <a href="http://www.yoda.arachsys.com/csharp/threads/winforms.shtml" rel="nofollow">part</a> (Threading in Windows Forms) deals specifically in relation to interacting between UI and threads.</p> http://stackoverflow.com/questions/1462101/c-remove-duplicate-values-from-dictionary/1462147#1462147 3 Answer by Timothy Carter for C#: Remove duplicate values from dictionary? Timothy Carter 2009-09-22T19:36:04Z 2009-09-22T19:36:04Z <p>Jon beat me to the .NET 3.5 solution, but this should work if you need a .NET 2.0 solution:</p> <pre><code> List&lt;string&gt; vals = new List&lt;string&gt;(); Dictionary&lt;string, string&gt; newDict = new Dictionary&lt;string, string&gt;(); foreach (KeyValuePair&lt;string, string&gt; item in myDict) { if (!vals.Contains(item.Value)) { newDict.Add(item.Key, item.Value); vals.Add(item.Value); } } </code></pre> http://stackoverflow.com/questions/1436879/what-is-strong-naming-and-how-do-i-strong-name-a-binary/1436886#1436886 3 Answer by Timothy Carter for What is strong naming and how do I strong name a binary? Timothy Carter 2009-09-17T05:42:40Z 2009-09-17T05:42:40Z <p>Eric Lippert <a href="http://blogs.msdn.com/ericlippert/archive/2009/09/03/what-s-the-difference-part-five-certificate-signing-vs-strong-naming.aspx" rel="nofollow">posted</a> about strong signing assemblies recently.</p> http://stackoverflow.com/questions/1436665/question-about-expression-a-b-c/1436682#1436682 11 Answer by Timothy Carter for Question about expression: a ? b : c Timothy Carter 2009-09-17T04:16:51Z 2009-09-17T04:16:51Z <pre><code>return string.IsNullOrEmpty(input) ? (DateTime?)null : DateTime.Parse(input); //or return string.IsNullOrEmpty(input) ? null : (DateTime?)DateTime.Parse(input); </code></pre> <p>Either works, you have to provide some means of compatability between the two types, since DateTime cannot be null, you need to explicitly with one that you're trying to go to <code>DateTime?</code>, then the compiler can implicit cast the other.</p> http://stackoverflow.com/questions/1427448/make-an-object-accessible-to-only-one-other-object-in-the-same-assembly/1427464#1427464 9 Answer by Timothy Carter for Make an object accessible to only one other object in the same assembly? Timothy Carter 2009-09-15T14:16:57Z 2009-09-16T14:38:30Z <p>If this is the approach you want or need to take, you could make the sql objects private classes within the business object.</p> <pre><code>public class BusinessObject { private class SqlObject { } } </code></pre> <p>Additionally, by making use of partial classes, you could separate this into separate files if desired.</p> <pre><code>//in one file public partial class BusinessObject { //business object implementation } //in another file public partial class BusinessObject { private class SqlObject { } } </code></pre> <p><a href="http://stackoverflow.com/users/3043">Joel</a> makes a good point in a comment below "the SqlObject can still inherit from a common type, to that things like connection information can be shared across those "inner" classes." this is absolutely true, and potentially very beneficial.</p> <p>In response to your edit, unit tests can only test public classes and functions (without using reflection in your tests). The only option I can think of that would do this is: </p> <ul> <li>make one assembly per business/sql object pair</li> <li>changing the <code>private class SqlObject</code> to <code>internal class SqlObject</code></li> <li>then use the <code>[InternalsVisibleTo("UnitTestsAssembly")]</code> for the project</li> </ul> <p>Also, at this point you wouldn't have to keep the sql object as a nested class. Generally speaking, I think this would likely add more complexity than the value it adds, but I completely understand that every situation is different, and if your requirements/expectations are driving you this, I wish you well. Personally, I think I would go with making the SqlObjects public (or internal with internals visible to for unit testing), and accept the fact that that means the sql classes are exposed to all of the business classes.</p> http://stackoverflow.com/questions/1427584/are-there-any-free-c-e-books-available-online/1427594#1427594 3 Answer by Timothy Carter for Are there any free C# e-books available online? Timothy Carter 2009-09-15T14:37:00Z 2009-09-15T14:37:00Z <p><a href="http://www.e-booksdirectory.com/programming.php#csharp" rel="nofollow">This site</a> has quite a few listed. Additionally on many other topics besides c#.</p> http://stackoverflow.com/questions/1389458/c-project-folder-naming-conventions/1389477#1389477 4 Answer by Timothy Carter for C# Project folder naming conventions Timothy Carter 2009-09-07T13:38:48Z 2009-09-07T13:38:48Z <p>I tend to use project folders as a way of separating out sub namespaces. So in your case, perhaps a folder called Repositories, which has class in the Data.Repositories namespace. Note, for partial classes, each file needs to be in the same namespace.</p> http://stackoverflow.com/questions/1322695/what-is-an-extension-class/1322721#1322721 2 Answer by Timothy Carter for What is an Extension Class? Timothy Carter 2009-08-24T14:24:08Z 2009-08-24T14:24:08Z <p>Technically an "extension class" is not anything. In the vernacular it could be used by someone to refer to a class that is designed to store <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx?ppud=4" rel="nofollow">extension methods</a>. Extension methods are methods used to look like instance methods of a class, but which are truly static methods in a static class that are provided to enhance and encapsulate certain functionality. They are especially useful when you are trying to extend certain functionality on a type that you cannot modify directly and add a method to. Additionally, they are often used with generic types (especially within the .net 3.5 framework) to extend functionality using the methods provided by a specific interface.</p> http://stackoverflow.com/questions/1302318/is-it-a-bad-practice-to-reference-system-windows-form-in-your-unit-test-project/1302335#1302335 1 Answer by Timothy Carter for Is it a bad practice to reference System.Windows.Form in your Unit Test project? Timothy Carter 2009-08-19T20:05:52Z 2009-08-19T20:05:52Z <p>It depends on your setup and the requirements of your test project(s), but as a general rule I would say it is not bad practice to do this; although in my experience, relatively uncommon practice.</p> http://stackoverflow.com/questions/1302077/can-i-stop-a-program-during-execution-any-other-way-than-by-throwing-an-error/1302094#1302094 2 Answer by Timothy Carter for Can I stop a program during execution any other way than by throwing an error? Timothy Carter 2009-08-19T19:20:47Z 2009-08-19T19:20:47Z <p>If this is a winforms app, <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.exit.aspx" rel="nofollow">Application.Exit</a> should work. If this is a console application, then you want to <code>return;</code> from the <code>Main</code> method, though properly getting there may be some work, depending on how your program is setup.</p> http://stackoverflow.com/questions/1300381/can-a-custom-attribute-imply-other-attributes-without-inheritance/1300403#1300403 0 Answer by Timothy Carter for Can a custom attribute imply other attributes without inheritance? Timothy Carter 2009-08-19T14:36:32Z 2009-08-19T14:36:32Z <p>I do not believe there is a way to imply secondary attributes or to add attributes at runtime. However, you could use a custom code template to add the attributes to every class as you add them. And/or for classes that are already developed, I suspect you could write a macro that goes through each file and adds the attributes to the classes, however I have not done this in the past, so I'm not sure what it would entail, I know making a code template to add to attributes to a class declaration is relatively simple. But this only works for class you're adding from the point of template addition on. If you need to do cleanup to old classes as well, I would look into macros if you have a lot of files/classes this needs to be done for. Or do it manually if there are not too many.</p> http://stackoverflow.com/questions/73385/asp-net-convert-csv-string-to-string/73394#73394 -1 Answer by Timothy Carter for asp.net Convert CSV string to string[] Timothy Carter 2008-09-16T15:11:19Z 2009-08-19T09:18:15Z <p>string[] splitString = origString.Split(',');</p> <p><em>(Following comment not added by original answerer)</em> <strong>Please keep in mind that this answer addresses the SPECIFIC case where there are guaranteed to be NO commas in the data.</strong></p> http://stackoverflow.com/questions/1296005/how-to-treat-nulls-in-equality-comparisons/1296041#1296041 0 Answer by Timothy Carter for How to treat nulls in equality comparisons? Timothy Carter 2009-08-18T19:41:22Z 2009-08-18T19:41:22Z <p>If you have an instance of an object, you do not have null and all equality comparers should respect this.</p> http://stackoverflow.com/questions/1274238/is-this-good-c-style/1274256#1274256 10 Answer by Timothy Carter for Is this good C# style? Timothy Carter 2009-08-13T20:04:58Z 2009-08-13T20:07:00Z <p>I believe </p> <pre><code>public static bool TryGetPolls(out List&lt;Poll&gt; polls) </code></pre> <p>would be more appropriate. If the method is a <code>TryGet</code> then my initial assumption would be there is reason to expect it to fail, and onus is on the caller to determine what to do next. If they caller is not handling the error, or wants error information, I would expect them to call a corresponding <code>Get</code> method.</p> http://stackoverflow.com/questions/1270315/which-is-the-best-programming-method-among-these-two/1270456#1270456 1 Answer by Timothy Carter for which is the best programming method among these two? Timothy Carter 2009-08-13T07:05:46Z 2009-08-13T07:05:46Z <p>Having code like this:</p> <pre><code>private int num1; public int pnum1 { set { num1 = value; } } </code></pre> <p>is the same as having</p> <pre><code>private int num1; public void pnum1(int a) { num1 = a; } </code></pre> <p>in nearly every way, except for readability. Generally, for simple getters and setters, properties are preferred in C#, because C# provides nice syntactic support for writing and accessing properties. Therefore, method 1 is what you will almost always see. They do not compile to identical code, but their functionality, security and performance should be identical.</p> http://stackoverflow.com/questions/273141/regex-for-numbers-only 1 Regex for numbers only Timothy Carter 2008-11-07T18:42:49Z 2009-08-10T14:51:49Z <p>I haven't used regular expressions at all, so I'm having difficulty troubleshooting. I want the regex to match only when the contained string is all numbers; but with the two examples below it is matching a string that contains all numbers plus an equals sign like "1234=4321". I'm sure there's a way to change this behavior, but as I said, I've never really done much with regular expressions.</p> <pre><code> string compare = "1234=4321"; Regex regex = new Regex(@"[\d]"); if (regex.IsMatch(compare)) { //true } regex = new Regex("[0-9]"); if (regex.IsMatch(compare)) { //true } </code></pre> <p>In case it matters, I'm using C# and .NET2.0.</p> http://stackoverflow.com/questions/1246348/why-isnt-propertyinfo-setvalue-a-generic-method/1246364#1246364 7 Answer by Timothy Carter for Why isn't PropertyInfo.SetValue a generic method? Timothy Carter 2009-08-07T18:41:56Z 2009-08-07T18:41:56Z <p>If it were generic, to call the method the type would need to be known at compile time; which would defeat the purpose of using reflection. So yes, this can mean boxing might occur, but object is the only safe type available for this method.</p> http://stackoverflow.com/questions/1210679/can-you-use-optional-parameters-in-code-targeting-net-3-5/1210685#1210685 2 Answer by Timothy Carter for Can you use Optional Parameters in code targeting .Net 3.5? Timothy Carter 2009-07-31T04:27:07Z 2009-07-31T04:37:53Z <p>I don't have VS2010 installed here to check, but I believe this would be purely a language feature, and therefore should be usable regardless of the framework being targeted.</p> <p>Edit: Looking at this <a href="http://geekswithblogs.net/michelotti/archive/2009/02/05/c-4.0-optional-parameters.aspx" rel="nofollow">link</a> (and a few others), it appears that optional parameters compile to method arguments with an [opt] attribute in the il. I don't know if this parameter existed in previous versions of the clr, but still my guess would be that it does.</p> http://stackoverflow.com/questions/1202976/oracle-insert-giving-error-in-c/1203045#1203045 1 Answer by Timothy Carter for Oracle INSERT giving error in C#. Timothy Carter 2009-07-29T21:06:12Z 2009-07-29T21:06:12Z <p>I believe you can't add the ';' at the end. So try:</p> <pre><code>DbCommand command = new OracleCommand( "insert into hardware (HardwareID) VALUES (6)", myConnection); command.ExecuteNonQuery(); </code></pre> http://stackoverflow.com/questions/1183088/net-library-dll-optimization/1183098#1183098 1 Answer by Timothy Carter for .net library (dll) optimization Timothy Carter 2009-07-25T21:21:47Z 2009-07-25T21:21:47Z <p>Without modifying the source code and building your own .dll, no there is no way to not ship the entire thing. Additionally, if you wanted to head the route of creating your own modified .dll, please be aware of any possible licensing issues involved (I don't know if there are any, but it's certainly something you should be aware of). And finally, I would add, I don't know how big the iTextSharp .dll is, but really ask yourself if however much space it takes up actually matters.</p> http://stackoverflow.com/questions/625812/vs2008-and-clearcase-opening-solution-requests-a-checkout-for-no-reason/1172420#1172420 1 Answer by Timothy Carter for VS2008 and ClearCase : opening solution requests a checkout for no reason. Timothy Carter 2009-07-23T15:06:54Z 2009-07-23T15:06:54Z <p><a href="http://www-01.ibm.com/support/docview.wss?ratlid=cctocbody&amp;rs=984&amp;uid=swg21281866" rel="nofollow">This</a> troubleshooting item, got me to <a href="http://www-01.ibm.com/support/docview.wss?rs=984&amp;uid=swg24018298" rel="nofollow">this</a> fix pack which has solved the issue in our development environment. We're still using VS2005, but I would expect that it's the same issue as what was going wrong in VS2008.</p> http://stackoverflow.com/questions/1172175/how-do-i-get-the-sum-of-the-counts-of-nested-lists-in-a-dictionary-without-using/1172239#1172239 4 Answer by Timothy Carter for How do I get the sum of the Counts of nested Lists in a Dictionary without using foreach? Timothy Carter 2009-07-23T14:41:06Z 2009-07-23T14:41:06Z <p>I believe this will get you the count you want efficiently and clearly. Under the hood it has to iterate through the lists, but to get a total count, there is no way to avoid this.</p> <pre><code>var i = dd.Values.Sum(x =&gt; x.Count); </code></pre> http://stackoverflow.com/questions/1165105/what-is-use-of-out-parameter-in-c/1165157#1165157 0 Answer by Timothy Carter for what is use of out parameter in c# Timothy Carter 2009-07-22T13:10:04Z 2009-07-22T13:10:04Z <p>Jon Skeet describes the different ways of passing parameters in great detail in <a href="http://www.yoda.arachsys.com/csharp/parameters.html" rel="nofollow">this</a> article. In short, an out parameter is a parameter that is passed uninitialized to a method. That method is then required to initialize the parameter before any possible return.</p> http://stackoverflow.com/questions/1155826/best-way-of-making-an-argument-optional-for-a-c-webmethod/1155849#1155849 0 Answer by Timothy Carter for Best way of making an argument optional for a C# webmethod Timothy Carter 2009-07-20T20:41:00Z 2009-07-20T20:41:00Z <pre><code>[WebMethod] public string UploadFileBasic( string wsURL , byte[] incomingArray , string FileName , string RecordTypeName) { return UploadFile(wsURL, incomingArray, FileName, RecordTypeName, new MetaData[0]); } </code></pre> <p>Then the UploadFile method handles everything, but you're able to expose two interfaces depending on what the consumer wants.</p> http://stackoverflow.com/questions/1148218/getting-error-not-all-code-paths-return-value-by-c-compiler/1148279#1148279 1 Answer by Timothy Carter for getting error not all code paths return value by c# compiler Timothy Carter 2009-07-18T18:52:34Z 2009-07-18T18:52:34Z <p>I think the real question is how do you want to handle an inputted null or empty string. If you believe your method should handle this by silently "correcting", you can return String.Empty. If however, you believe the calling methods should deal with this error, then throwing an exception and not catching it seems like the appropriate course of action. Regardless of which you choose it seems you shouldn't need the try/catch block.</p> <pre><code>public static string Reverse(string s) { if (String.IsNullOrEmpty(s)) { //option 1 return String.Empty; //option 2 throw new NullReferenceException(); } //rest of method } </code></pre> http://stackoverflow.com/questions/1493591/how-can-i-take-a-screenshot-of-a-winforms-control-form-in-c Comment by Timothy Carter on How can I take a screenshot of a Winforms control/form in C#? Timothy Carter 2009-09-29T16:30:26Z 2009-09-29T16:30:26Z Are you trying to do this in code, or through a screen capture tool of some kind? http://stackoverflow.com/questions/1459403/missing-features-in-visual-studio/1466215#1466215 Comment by Timothy Carter on Missing features in Visual Studio? Timothy Carter 2009-09-23T20:20:20Z 2009-09-23T20:20:20Z A post about why this isn't currently available in the debugger: <a href="http://blogs.msdn.com/jaredpar/archive/2009/08/26/why-no-linq-in-debugger-windows.aspx" rel="nofollow">blogs.msdn.com/jaredpar/archive/&hellip;</a> http://stackoverflow.com/questions/1390296/code-golf-email-address-validation-without-regular-expressions Comment by Timothy Carter on Code Golf: Email Address Validation without Regular Expressions Timothy Carter 2009-09-07T17:34:19Z 2009-09-07T17:34:19Z @Jared: <a href="http://meta.stackoverflow.com/questions/20736/what-is-code-golf-on-stack-overflow" rel="nofollow" title="what is code golf on stack overflow">meta.stackoverflow.com/questions/20736/&hellip;</a> http://stackoverflow.com/questions/1332324/missing-desired-features-in-c/1332341#1332341 Comment by Timothy Carter on Missing/desired features in C#? Timothy Carter 2009-08-26T05:23:10Z 2009-08-26T05:23:10Z Thanks for the link. http://stackoverflow.com/questions/273141/regex-for-numbers-only/1255360#1255360 Comment by Timothy Carter on Regex for numbers only Timothy Carter 2009-08-10T14:54:35Z 2009-08-10T14:54:35Z You can search on the site to see if this question has already been asked. If it has not been asked, then you are welcome to post your own question, explaining specifically what it is you're trying to do. http://stackoverflow.com/questions/1172175/how-do-i-get-the-sum-of-the-counts-of-nested-lists-in-a-dictionary-without-using Comment by Timothy Carter on How do I get the sum of the Counts of nested Lists in a Dictionary without using foreach? Timothy Carter 2009-07-23T14:38:07Z 2009-07-23T14:38:07Z You want a total count? In the case of the example 6? http://stackoverflow.com/questions/1155826/best-way-of-making-an-argument-optional-for-a-c-webmethod/1155849#1155849 Comment by Timothy Carter on Best way of making an argument optional for a C# webmethod Timothy Carter 2009-07-20T20:54:49Z 2009-07-20T20:54:49Z @280Z28 OP says &quot;I do not want to burden the client program with creating an empty array as a 5th parameter.&quot;, this does not burden the client/consuming app. http://stackoverflow.com/questions/1088348/c-displaying-a-form-from-a-dynamically-loaded-dll/1088385#1088385 Comment by Timothy Carter on C# - displaying a form from a dynamically loaded DLL. Timothy Carter 2009-07-06T18:15:43Z 2009-07-06T18:15:43Z Right I guess my main point was to ensure that error checking was addressed somewhere in this response chain. Obviously code posted here is not going to be production worthy robust, but I wanted it at least mentioned to a passerby in the future that some form of error checking should be added. And not to just assume the type you got is the type you thought it would be. If you can guarantee the type at compile time, why not reference the assembly and use the object; skip reflections altogether. http://stackoverflow.com/questions/1088348/c-displaying-a-form-from-a-dynamically-loaded-dll/1088385#1088385 Comment by Timothy Carter on C# - displaying a form from a dynamically loaded DLL. Timothy Carter 2009-07-06T18:07:55Z 2009-07-06T18:07:55Z Depending on what your plan is in case of failure, you certainly can do that and eliminate a line of code. But if the check fails you plan to do/try something else with the object, then it needs to be done in separate lines. http://stackoverflow.com/questions/1075603/how-do-i-sort-a-string-array-alphabetically-by-length Comment by Timothy Carter on How do I sort a string array alphabetically by length? Timothy Carter 2009-07-02T17:32:24Z 2009-07-02T17:32:24Z Is what you really want, to sort alphabetically on the first character and then by length thereafter? http://stackoverflow.com/questions/305223/jon-skeet-facts/309538#309538 Comment by Timothy Carter on Jon Skeet Facts? Timothy Carter 2009-07-01T17:45:09Z 2009-07-01T17:45:09Z this one is now completely true... In fact, Marc Gravell can now open them with no help at all :-P http://stackoverflow.com/questions/1005055/how-does-transparent-proxy-gets-created-in-remoting Comment by Timothy Carter on How does transparent proxy gets created in Remoting Timothy Carter 2009-07-01T17:03:22Z 2009-07-01T17:03:22Z I believe this might be a related question from the same user 5 days later <a href="http://stackoverflow.com/questions/1026140/can-i-use-interface-for-cao-in-remoting" rel="nofollow" title="can i use interface for cao in remoting">stackoverflow.com/questions/1026140/&hellip;</a> http://stackoverflow.com/questions/1041834/c-const-field-in-abstract-class/1041849#1041849 Comment by Timothy Carter on C# Const field in abstract class Timothy Carter 2009-06-25T02:19:58Z 2009-06-25T02:19:58Z base is a c# keyword for the base class of the current class. MyBase is what Gishu declared as the abstract class in his sample code. http://stackoverflow.com/questions/1039563/looking-for-an-alterantive-to-listkeyvaluepairstring-keyvaluepairstring-stri Comment by Timothy Carter on Looking for an alterantive to List<KeyValuePair<string, KeyValuePair<string, string>>> Timothy Carter 2009-06-24T16:48:16Z 2009-06-24T16:48:16Z answers to this question might be helpful <a href="http://stackoverflow.com/questions/101825/whats-the-best-way-of-using-a-pair-triple-etc-of-values-as-one-value-in-c" rel="nofollow" title="whats the best way of using a pair triple etc of values as one value in c">stackoverflow.com/questions/101825/&hellip;</a> http://stackoverflow.com/questions/1038674/c-prefixing-parameter-names-with/1038682#1038682 Comment by Timothy Carter on C# prefixing parameter names with @ Timothy Carter 2009-06-24T14:43:03Z 2009-06-24T14:43:03Z Since C# 1.0 no new reserved words have been added, only contextual keywords. This will be the case with dynamic as well. <a href="http://blogs.msdn.com/ericlippert/archive/2009/05/11/reserved-and-contextual-keywords.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/&hellip;</a>