User Graphain - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T07:03:54Zhttp://stackoverflow.com/feeds/user/364http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime1Changing type of a field in C# at runtimeGraphain2009-11-09T17:34:00Z2009-11-15T13:20:09Z
<p>Hi,</p>
<p>I have an existing heirarchy of classes, say something like this:</p>
<pre><code>Business
- Division
- ProjectTeam
- Employee
</code></pre>
<p>These classes are instantiated via deserialization.</p>
<p>However, now I need to expose extra fields in the Employee for a particular user of the library i.e. say something like this:</p>
<pre><code>SpecialBusiness (extends Business)
- Division
- ProjectTeam
- SpecialEmployee (extends Employee)
- Degree
</code></pre>
<p>The problem is, I can't just make a class that extends 'Business' because the addition I want to make is to the 'Employee' class.</p>
<p>As I see it I have two options:</p>
<ol>
<li><p>Duplicate the heirarchy with 'Special' classes. This means each 'Special' class will have a collection of the original classes and a collection of the new 'Special' classes.</p>
<pre><code>SpecialBusiness
- Division AND SpecialDivision (extends Division)
- ProjectTeam AND SpecialProjectTeam (extends ProjectTeam)
- Employee AND SpecialEmployee (extends Employee)
- Degree
</code></pre></li>
<li><p>Somehow retype 'Employee' to 'SpecialEmployee' at runtime for deserialization purposes. Know that I can cast all 'Employee' objects from a SpecialBusiness to 'SpecialEmployee' in the codebase (possibly using helper methods to make it obvious).</p></li>
</ol>
<p>Any ideas on how to deal with this problem?</p>
http://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702754#17027540Answer by Graphain for Changing type of a field in C# at runtimeGraphain2009-11-09T18:15:43Z2009-11-09T18:15:43Z<p>One possible solution (assumes chosen deserialisation method allows private field serialization):</p>
<p>Use the method 1 from the question (i.e. a separate hierarchy) and store the extended versions of the classes in a private field. After deserialization update the regular public non-extended fields with the extended versions and include a method that returns a cast version of these fields.</p>
<pre><code>SpecialProjectTeam
- (private) SpecialEmployees
- (public) Employees
- (public) GetSpecialEmployees (returns Employees field cast as SpecialEmployees)
</code></pre>
http://stackoverflow.com/questions/1702417/c-and-excel-files/1702456#17024561Answer by Graphain for C# and Excel filesGraphain2009-11-09T17:21:25Z2009-11-09T17:21:25Z<p>I had to do this recently and found NPOI (<a href="http://npoi.codeplex.com/" rel="nofollow">http://npoi.codeplex.com/</a>) the best bet, especially as I needed to generate binary .xls files that didn't throw up any confusing errors for a client about filetypes.</p>
<p>See <a href="http://www.leniel.net/2009/07/creating-excel-spreadsheets-xls-xlsx-c.html" rel="nofollow">this blog post</a> for more info.
You'll also find that as it's a port of an existing framework there's plenty of help available for the original framework that is applicable to the port.</p>
http://stackoverflow.com/questions/1662637/travelling-visual-studio-developers1Travelling Visual Studio developersGraphain2009-11-02T17:38:45Z2009-11-02T18:36:10Z
<p>Hi,</p>
<p>I am about to travel to Europe (I'm Australian but imagine this is a similar circumstance for US users and simply flipped for European users).</p>
<p>However, there is the slim possibility I will need to do some Visual Studio work while I'm travelling.</p>
<p>As I see it I have three options:</p>
<ol>
<li>Leave a desktop PC on at home, access remotely via net cafes.</li>
<li>Carry a laptop with me on the trip, upload files as required using public wifi.</li>
<li>Option 2 but instead buy cheap light netbook that is miraculously capable of running VS.</li>
</ol>
<p>Does anyone have any experience or advice to shed on any of these options?</p>
<p>For reference, <a href="http://stackoverflow.com/questions/661421/are-there-any-drawbacks-to-running-visual-studio-remotely">this existing post</a> suggests that VS remotely for short distances is okay, but over longer distances could be more problematic. I've used VS via RDP to a US server before and it was pretty laggy but for small changes I could get by.</p>
<p>Concerns I have that you may have some experience with:</p>
<ul>
<li>Weight of luggage (ideally like to travel light)</li>
<li>Security of laptop (imagine it'll be too heavy to carry around all the time so have to leave it at hotel/hostel etc. and hope for the best)</li>
<li>Security of data (don't want someone stealing RDP access to my home PC)</li>
<li>Security of FTP (don't want someone stealing FTP passwords over wireless)</li>
</ul>
http://stackoverflow.com/questions/45062/linq-to-sql-association-properties-do-not-have-matching-types0LINQ to SQL Association - "Properties do not have matching types"Graphain2008-09-05T00:58:59Z2009-10-16T04:58:59Z
<p>Hi,</p>
<p>I am trying to link two fields of a given table to the same field in another table.
I have done this before so I can't work out what is wrong this time.</p>
<p>Anyway:</p>
<pre><code>Table1
- Id (Primary)
- FK-Table2a (Nullable, foreign key relationship in DB to Table2.Id)
- FK-Table2b (Nullable, foreign key relationship in DB to Table2.Id)
Table2
- Id (Primary)
</code></pre>
<p>The association works for FK-Table2a but not FK-Table2b.
In fact, when I load into LINQ to SQL, it shows Table2.Id as associated to Table1.Id.
If I try and change this, or add a new association for FK-Table2b to Table2.Id it says: "Properties do not have matching types".</p>
<p>This also works in other projects - maybe I should just copy over the .dbml?</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/724143/how-do-i-create-a-delegate-for-a-net-property4How do I create a delegate for a .NET property?Graphain2009-04-07T04:30:36Z2009-10-15T22:16:49Z
<p>Hi,</p>
<p>I am trying to create a delegate (as a test) for:</p>
<pre><code>Public Overridable ReadOnly Property PropertyName() As String
</code></pre>
<p>My intuitive attempt was declaring the delegate like this:</p>
<pre><code>Public Delegate Function Test() As String
</code></pre>
<p>And instantiating like this:</p>
<pre><code>Dim t As Test = AddressOf e.PropertyName
</code></pre>
<p>But this throws the error:</p>
<blockquote>
<p>Method 'Public Overridable ReadOnly Property PropertyName() As
String' does not have a signature
compatible with delegate 'Delegate
Function Test() As String'.</p>
</blockquote>
<p>So because I was dealing with a property I tried this:</p>
<pre><code>Public Delegate Property Test() As String
</code></pre>
<p>But this throws a compiler error.</p>
<p>So the question is, how do I make a delegate for a property?</p>
http://stackoverflow.com/questions/415535/maintain-css-styling-when-converting-html-to-pdf-in-asp-net2Maintain CSS styling when converting HTML to PDF in ASP.NETGraphain2009-01-06T05:07:52Z2009-10-07T14:05:24Z
<p>Hi,</p>
<p>I am using ITextSharp to convert a HTML page to PDF.</p>
<p>However, ITextSharp prints the CSS in the STYLE declaration straight out, ignores stylesheets even when added programatically and only listens to some inline styles (e.g. font-size and color but not background-color).</p>
<p>Is there something I am missing with ITextSharp, or is there a better (and free) way of doing this conversion?</p>
<p>Thanks in advance,</p>
http://stackoverflow.com/questions/1371347/get-the-actual-type-of-a-generic-object-parameter2Get the actual type of a generic object parameterGraphain2009-09-03T03:49:21Z2009-10-06T18:23:43Z
<p>Hi,</p>
<p>No doubt elements of this question have been asked before, but I'm having trouble finding an answer. (Disclaimer: this is related, but separate from a recent question I asked).</p>
<p>I have a method like this:</p>
<pre><code>public static void Method<T>(MethodInfo m, T value)
{
Type memberType = m.GetValueType();
if (memberType.IsAssignableFrom(typeof(List<T>))
{
object memberValue = Activator.CreateInstance(memberType);
((List<T>)memberValue).Add(value);
}
}
</code></pre>
<p>This works fine when I call it like this:</p>
<pre><code>string s = "blah";
Method(memberInfo, s);
</code></pre>
<p>However, I need to call this method using a generic type, so I'm calling it like this:</p>
<pre><code>Type valueType = someType;
object passValue = someMethod.MakeGenericMethod(new Type[] { valueType }).Invoke(this, new object[] { });
/* Call my original method */
Method(memberInfo, passValue );
</code></pre>
<p>Now, intellisense knows that 'value' in Method<T> is whatever type valueType is (say 'FooObject'). But 'T' is object, which means that a List<FooObject> is <em>not</em> assignable from a List<T> (i.e. a List<object>). </p>
<p>I've tried using Convert.ChangeType on the variable ('passValue') beforehand but that wasn't any more useful.</p>
<p>As there is no way to cast a variable to the Type of a type variable, how do I get around this?</p>
<p>Is the best solution to somehow not rely on IsAssignableFrom and do a looser type check of whether this will work? The problem with this is that I'm not sure I'll be able to cast the memberValue properly unless 'T' is truly the element type of memberValue.</p>
http://stackoverflow.com/questions/1525445/how-do-you-tell-the-c-compiler-that-a-symbol-is-a-type-and-not-a-variable-when-t1How do you tell the C# compiler that a symbol is a type and not a variable when they share the same name?Graphain2009-10-06T13:03:13Z2009-10-06T13:09:45Z
<p>Hi,</p>
<p>When you have a local variable named the same as a type, is there any way to tell the compiler that the symbol you have given is a type or a variable? For instance consider (and ignore all type return errors):</p>
<pre><code>public class sometype { public static sometype DoSomething() {} }
public string sometype { get { return sometype.DoSomething(); } } //A
public string sometype { get { return sometype.Trim(); } } //B
public sometype sometype { get { return sometype.DoSomething(); } } //C
public sometype sometype { get { return sometype.Trim(); } } //D
</code></pre>
<ul>
<li>A -> Error (no method DoSomething())</li>
<li>B -> Works</li>
<li>C -> Works</li>
<li>D -> error (no method Trim())</li>
</ul>
<h3>From a more applicative point of view</h3>
<p>(you may want to skip this if XSD bores you):</p>
<p>I am currently trying to get LINQ to XSD working.
In my XSD file there are xs:elements like this:</p>
<pre><code><xs:element name="car" type="car">
</code></pre>
<p>Where the 'car' type is defined as a simpleType like this <br/>
(probably some more restrictions but this is it in essence):</p>
<pre><code><xs:simpleType name="car">
<xs:restriction base="xs:string" />
</xs:simpleType>
</code></pre>
<p>So naturally LINQ to XSD generates code that looks like this:</p>
<pre><code>public string car {
get {
XElement x = this.GetElement(XName.Get("car", ""));
return XTypedServices.ParseValue<string>(x, XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String).Datatype);
}
set {
this.SetElementWithValidation(XName.Get("car", ""), value, "car", car.TypeDefinition);
}
}
</code></pre>
<p>But this won't compile due to the aforementioned problem.</p>
http://stackoverflow.com/questions/1500975/make-executable-run-at-a-lower-priority/1500977#15009773Answer by Graphain for Make Executable run at a lower priorityGraphain2009-09-30T22:29:16Z2009-09-30T22:29:16Z<p>See <a href="http://stackoverflow.com/questions/239160/setting-a-thread-priority-in-a-service">http://stackoverflow.com/questions/239160/setting-a-thread-priority-in-a-service</a>.</p>
http://stackoverflow.com/questions/953785/deserializing-xml-with-dynamic-types-converting-string-to-system-type/1498761#14987610Answer by Graphain for deserializing XML with dynamic types / converting string to System.TypeGraphain2009-09-30T15:14:08Z2009-09-30T15:14:08Z<p>The other option if you want an actual keyword Type to work with, and not a variable type is using something like (sorry I'm using C# and am too tired to do the VB conversion):</p>
<pre><code>method in XmlSerializer like Deserialize(typestring, object);
method in XmlSerializer like Deserialize<T>(object);
public void Deserialize(string typestring, object obj)
{
MethodInfo deserialize = typeof(XmlSerializer)
.GetMethod("Deserialize", BindingFlags.Instance | BindingFlags.Public)
.MakeGenericMethod(new Type[] { Type.GetType(typestring) });
deserialize.Invoke(this, new[] { obj });
}
</code></pre>
http://stackoverflow.com/questions/1498445/xml-reserializing-a-partially-deserialized-xml-document-after-changes0XML Reserializing a partially deserialized xml document after changesGraphain2009-09-30T14:24:15Z2009-09-30T14:24:15Z
<p>Hi,</p>
<p>I need to modify a reasonably complex XML document.</p>
<p>The problem-space representation of the document involves some behaviour that doesn't seem native to the document representation. For instance, ignoring lots of the elements in the document and grouping elements within the document into logical groups that might not be apparent in the document.</p>
<p>As an example, consider this pseudo-XML:</p>
<pre><code><root>
<some-config-element>
...lots of sub-elements...
</some-config-element>
<a-real-element>
<value weight="0"><p>1</p></value>
<value weight="0"><p>3</p></value>
<value weight="1"><p>1</p></value>
</a-real-element>
<a-real-element>
<value weight="0"><some-ignored-element></some-ignored-element><p>1</p></value>
<value weight="2"><p>2</p></value>
<value weight="2"><p>4</p></value>
</a-real-element>
</root>
</code></pre>
<p>My representation of this is some classes like this:</p>
<pre><code>Document
List<A-real-element> A-real-elements
A-real-element
List<BusinessObject> BusinessObjectsOfEachWeight
/* Values are split based on their weight into a business object */
BusinessObject
List<value> Values
Value
Weight
p
</code></pre>
<p>Originally each of these classes had XML serialization/deserialization code within them. It was messy, and the serialization just involved modifying the document when things were changed (it wasn't a true reserialization).</p>
<p>To this end I've written some code that allows me to decorate the classes with attributes (more advanced than the default .NET ones) to make deserialization happen easier.</p>
<p>However, while this gives me benefits, it doesn't make reserialization easier, because I still have to go around modifying nodes otherwise I lose all that config/ignored elements data.</p>
<p>Does anyone have any recommendations on this situation, in particular the reserialization aspect, but also generally if they feel generous.</p>
http://stackoverflow.com/questions/1456398/asp-net-object-reference-not-set-to-an-instance-of-an-object/1456406#14564061Answer by Graphain for ASP.NET: Object reference not set to an instance of an object. Graphain2009-09-21T19:35:16Z2009-09-21T20:32:02Z<p>You would need to show us the constructor of LimsNetBusiness.SiteUI.SiteUI I would assume.</p>
<p>Given that this problem only happens remotely, I'm thinking the constructor accesses an asset, connection or config file that isn't available on the server.</p>
<p>My recommendation is to open the DLL with <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> and see what resources it accesses/other potentials for a null dereference.</p>
<p>Oddly you are saying there is no Sub New(), but I'm curious how you can create a variable of that type without having a constructor.</p>
<p>You mention that SiteUI passes through to your data layer - are you confident the data layer access is working fine remotely?</p>
http://stackoverflow.com/questions/1452827/best-way-to-call-a-generic-method-multiple-times-runtime-return-type-using-a-pa0Best way to call a generic method multiple times (runtime return type) using a parameter-safe invocationGraphain2009-09-21T03:54:49Z2009-09-21T04:02:01Z
<p>Hi,</p>
<p>I feel like I'm so close to working this out and have read dozens of articles and existing questions.</p>
<p>I have a method like this:</p>
<pre><code>public T DoStuff(object arg1, object arg2)
{
/* Do stuff and return a T */
}
</code></pre>
<p>And I need to be able to pass this method to another class for callback purposes.<br/>
However, when this other class calls back it will do so with a different expected return type that is only known at runtime.</p>
<p>E.g.:</p>
<pre><code>public void SomeMethod(MethodInfo m, ref object caller)
{
MethodInfo callback = m.MakeGenericMethod(new Type[] { runtimeType });
callback.Invoke(caller, new [] { arg1val, arg2val });
}
/* DoStuff() will make a call to SomeMethod() passing
* itself (the method and the object) */
</code></pre>
<p>However, instead of this I would like to be able to </p>
<ol>
<li>Pass only a single callback object (i.e. a delegate or Func<>) to SomeMethod.</li>
<li>Be able to modify this object appropriately for the generic call.</li>
<li>Have type-safe parameters for the call as I would with a delegate/Func<>.</li>
</ol>
<p>I've found approaches that suit each of these individually but none that covers all of them.<br/><br/>
Is it possible?</p>
http://stackoverflow.com/questions/1131781/blank-html-form-action-posting-back-to-self2Blank HTML form action (posting back to self)Graphain2009-07-15T14:34:11Z2009-09-20T18:11:10Z
<p>I am wondering if anyone can give a "best practices" response to using blank HTML form actions to post back to the current page.</p>
<p>There is <a href="http://stackoverflow.com/questions/641292/html-forms-without-actions">a post asking what a blank HTML form action does here</a> and some pages like <a href="http://www.thefutureoftheweb.com/blog/use-empty-form-action-submit-to-current" rel="nofollow">this one</a> suggest it is fine but I'd like to know what people think.</p>
http://stackoverflow.com/questions/301095/is-there-any-point-to-writing-your-own-validation-framework-for-mvc-beta-or-do-yo1Is there any point to writing your own validation framework for MVC beta or do you expect one will be released soon?Graphain2008-11-19T05:44:37Z2009-09-17T05:00:19Z
<p>Hi,</p>
<p>There have been plenty of questions on MVC validation but so far the answer has been pretty much inconclusive.</p>
<p>For my needs in particular, I would like something that generates client validation and server validation from the same description and should allow both model based attributes as well as code based declarations for those using an ORM (e.g. LINQ TO SQL) exclusively.</p>
<p>I have seen some validation packs that have been whipped up to do this but they tend to introduce a lot of dependencies or are reasonably incomplete (e.g. no support for check boxes or no "higher-level" validation).</p>
<p>Do we begin writing our own validation framework or do we wait in hope that the team may actually release something now that they have the structure for validation in place and jQuery on board?</p>
<p>For those out there actually using MVC in the field now what are you using for validation?</p>
http://stackoverflow.com/questions/301095/is-there-any-point-to-writing-your-own-validation-framework-for-mvc-beta-or-do-yo/1436786#14367861Answer by Graphain for Is there any point to writing your own validation framework for MVC beta or do you expect one will be released soon?Graphain2009-09-17T05:00:19Z2009-09-17T05:00:19Z<p>The best way as of the released MVC 1.0 is to use <a href="http://xval.codeplex.com/" rel="nofollow">xVal</a>.<br/>
You may also need to look at <a href="http://goneale.com/2009/03/04/using-metadatatype-attribute-with-aspnet-mvc-xval-validation-framework/" rel="nofollow">this post</a> on implementing Linq2SQL with xVal in case that hasn't been resolved/doesn't work.</p>
http://stackoverflow.com/questions/1421728/generate-full-join-with-linqtosql/1421746#14217460Answer by Graphain for Generate FULL JOIN with LinqToSQLGraphain2009-09-14T14:02:24Z2009-09-14T14:08:21Z<p>See this post from the VB Team:</p>
<p><a href="http://blogs.msdn.com/vbteam/archive/2008/02/12/converting-sql-to-linq-part-9-full-outer-join-bill-horst.aspx" rel="nofollow">http://blogs.msdn.com/vbteam/archive/2008/02/12/converting-sql-to-linq-part-9-full-outer-join-bill-horst.aspx</a></p>
<p>Looks a little verbose.</p>
<p>Otherwise, there may be a way to achieve what you want using Foreign Keys and the Union operator.</p>
http://stackoverflow.com/questions/1419630/dynamically-get-the-result-of-a-funct-bool-invocation2Dynamically get the result of a Func<T,bool> invocationGraphain2009-09-14T04:04:39Z2009-09-14T13:47:07Z
<p>Hi,</p>
<p>I am trying to serialize something based upon meeting particular criteria.</p>
<p>To this end my original hope was to use attributes containing a lambda expression on an object's properties.</p>
<p>However, as this cannot be done I've settled for having a Func<T,bool> member within the class and passing the type (or first parameter type) and name of this Func through the property attribute. E.g.:</p>
<pre><code>Func<SomeObject, bool> func = (p => p.Value == 4);
[FuncAtt(typeof(SomeObject), "func")]
public SomeObject PropertyName { get; set;}
</code></pre>
<p>In my serializer I need to call this Func<T, bool>.</p>
<p>Let's assume I have a Type t which is equal to typeof(SomeObject) in this case, or more abstractly, typeof(T). I can also get the Func<T,bool> itself, but only through reflection as an object.</p>
<p>My naive approach is something along these lines:</p>
<pre><code>object func = typeof(MyClass).GetField(attribute.FuncName).GetValue(MyClassInstance);
Type funcType = typeof(Func<,>).MakeGenericType(attribute.Type, typeof(bool));
ParameterExpression p = Expression.Parameter(attribute.Type, objectToSerialize);
LambdaExpression l = Expression.Lambda(funcType, func, p); /* Won't work */
</code></pre>
<p>But this leads to the problem of casting a lambda to a delegate which is apparently erroneous. </p>
<p>I tried this in place of 'func':</p>
<pre><code>(Expression)((Action)(() => func))
</code></pre>
<p>But that relies on func being a method call not a lambda.</p>
<p>So, can anyone point me in the right direction?</p>
http://stackoverflow.com/questions/119647/british-english-to-american-english-and-vice-versa-converter3British English to American English (and vice versa) ConverterGraphain2008-09-23T07:45:18Z2009-09-08T22:34:46Z
<p>Hi,</p>
<p>Does anyone know of a library or bit of code that converts British English to American English and vice versa?</p>
<p>I don't imagine there's too many differences (some examples that come to mind are doughnut/donut, colour/color, grey/gray, localised/localized) but it would be nice to be able to provide localised site content.</p>
http://stackoverflow.com/questions/1385668/what-is-the-best-way-to-fast-insert-sql-data-and-dependant-rows2What is the best way to fast insert SQL data and dependant rows?Graphain2009-09-06T13:20:16Z2009-09-06T14:05:46Z
<p>Hi,</p>
<p>I need to write some code to insert around 3 million rows of data.<br/>
At the same time I need to insert the same number of companion rows.</p>
<p>I.e. schema looks like this:</p>
<pre><code>Item
- Id
- Title
Property
- Id
- FK_Item
- Value
</code></pre>
<p>My first attempt was something vaguely like this:</p>
<pre><code>BaseDataContext db = new BaseDataContext();
foreach (var value in values)
{
Item i = new Item() { Title = value["title"]};
ItemProperty ip = new ItemProperty() { Item = i, Value = value["value"]};
db.Items.InsertOnSubmit(i);
db.ItemProperties.InsertOnSubmit(ip);
}
db.SubmitChanges();
</code></pre>
<p>Obviously this was terribly slow so I'm now using something like this:</p>
<pre><code>BaseDataContext db = new BaseDataContext();
DataTable dt = new DataTable("Item");
dt.Columns.Add("Title", typeof(string));
foreach (var value in values)
{
DataRow item = dt.NewRow();
item["Title"] = value["title"];
dt.Rows.Add(item);
}
using (System.Data.SqlClient.SqlBulkCopy sb = new System.Data.SqlClient.SqlBulkCopy(db.Connection.ConnectionString))
{
sb.DestinationTableName = "dbo.Item";
sb.ColumnMappings.Add(new SqlBulkCopyColumnMapping("Title", "Title"));
sb.WriteToServer(dt);
}
</code></pre>
<p>But this doesn't allow me to add the corresponding 'Property' rows.</p>
<p>I'm thinking the best solution might be to add a Stored Procedure like <a href="http://stackoverflow.com/questions/810962/getting-new-ids-after-a-bulk-insert-in-sql-server-2008/810973#810973">this one</a> that generically lets me do a bulk insert (or at least multiple inserts, but I can probably disable logging in the stored procedure somehow for performance) and then returns the corresponding ids.</p>
<p>Can anyone think of a better (i.e. more succinct, near equal performance) solution?</p>
http://stackoverflow.com/questions/1365673/append-an-object-to-an-ienumerable-via-reflection0Append an object to an IEnumerable<> via reflectionGraphain2009-09-02T03:15:24Z2009-09-03T04:05:45Z
<p>Hi,</p>
<p>I need to be able to access a property via reflection, and, knowing that this property is an IEnumerable, append an object to it.</p>
<p>Something like this:</p>
<pre><code>Object o;
MemberInfo m;
Array arr; // Except use IEnumerable, may have to take account of value/ref types
arr = (Array)((PropertyInfo)m).GetValue(o, null); }
List<o.GetType()> newArr = new List<o.GetType()>(); /* fails */
newArr.AddRange(arr);
newArr.Add(o);
((PropertyInfo)m).SetValue(o, newArr.ToArray(), null);
</code></pre>
<p>Can you help me where I'm going wrong :-)</p>
<p>Solution:</p>
<p>See accepted answer comments. Also (<a href="http://stackoverflow.com/questions/1371347/get-the-actual-type-of-a-generic-object-parameter/1371378#1371378">http://stackoverflow.com/questions/1371347/get-the-actual-type-of-a-generic-object-parameter/1371378#1371378</a>) is of help.</p>
http://stackoverflow.com/questions/279748/cannot-use-local-variable-before-it-is-declared-asp-net-mvc-beta1Cannot use local variable before it is declared ASP.NET MVC BetaGraphain2008-11-11T01:19:27Z2009-09-02T11:00:01Z
<p>Hi,</p>
<p>I have some code like this:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Save([Bind(Prefix="")]Person person)
{
String s = person.property;
/* ... */
}
</code></pre>
<p>But it throws the error: "Cannot use local variable 'person' before it is declared".</p>
<p>What simple thing am I missing?</p>
http://stackoverflow.com/questions/41027/whats-a-good-bit-of-js-or-jquery-for-horizontally-scrolling-news-ticker3What's a good bit of JS or JQuery for horizontally scrolling news tickerGraphain2008-09-03T01:33:57Z2009-08-21T03:12:41Z
<p>Hi,</p>
<p>I am looking for a little bit of JQuery or JS that allows me to produce a horizontally scrolling "news ticker" list.</p>
<p>The produced HTML needs to be standards compliant as well.</p>
<p>I have tried <a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/jq-liscroll/scrollanimate.html" rel="nofollow">liScroll</a> but this has a habit of breaking (some content ends up on a second line at the start of the scroll), especially with longer lists.</p>
<p>I have also tried <a href="http://www.mioplanet.com/rsc/newsticker_javascript.htm" rel="nofollow">this News Ticker</a> but when a DOCTYPE is included the scrolling will jolt rather than cycle smoothly at the end of each cycle.</p>
<p>Any suggestions are appreciated.</p>
<p><strong>Edit</strong></p>
<p>So thanks to Matt Hinze's suggestion I realised I could do what I wanted to do with JQuery animate (I require continuous scrolling not discrete scrolling like the example). However, I quickly ran into similar problems to those I was having with liScroll and after all that realised a CSS issue (as always) was responsible.</p>
<p>Solution: liScroll - change the default 'var stripWidth = 0' to something like 100, to give a little space and avoid new line wrapping.</p>
http://stackoverflow.com/questions/1228948/which-is-the-most-simple-registration-form/1228964#12289644Answer by Graphain for which is the most simple registration form?Graphain2009-08-04T17:49:08Z2009-08-04T17:49:08Z<p>Whatever is the bare minimum you need to know to provide the user with what they need.</p>
http://stackoverflow.com/questions/933664/net-xml-serialization-without-xml-root-node1.NET XML Serialization without <?xml> root nodeGraphain2009-06-01T05:30:48Z2009-07-31T01:37:50Z
<p>Hi,</p>
<p>I'm trying to generate XML like this:</p>
<pre><code><?xml version="1.0"?>
<!DOCTYPE APIRequest SYSTEM
"https://url">
<APIRequest>
<Head>
<Key>123</Key>
</Head>
<ObjectClass>
<Field>Value</Field
</ObjectClass>
</APIRequest>
</code></pre>
<p>I have a class (ObjectClass) decorated with XMLSerialization attributes like this:</p>
<pre><code>[XmlRoot("ObjectClass")]
public class ObjectClass
{
[XmlElement("Field")]
public string Field { get; set; }
}
</code></pre>
<p>And my really hacky intuitive thought to just get this working is to do this when I serialize:</p>
<pre><code>ObjectClass inst = new ObjectClass();
XmlSerializer serializer = new XmlSerializer(inst.GetType(), "");
StringWriter w = new StringWriter();
w.WriteLine(@"<?xml version=""1.0""?>");
w.WriteLine("<!DOCTYPE APIRequest SYSTEM");
w.WriteLine(@"""https://url"">");
w.WriteLine("<APIRequest>");
w.WriteLine("<Head>");
w.WriteLine(@"<Field>Value</Field>");
w.WriteLine(@"</Head>");
XmlSerializerNamespaces ns = new XmlSerializerNamespaces();
ns.Add("", "");
serializer.Serialize(w, inst, ns);
w.WriteLine("</APIRequest>");
</code></pre>
<p>However, this generates XML like this:</p>
<pre><code><?xml version="1.0"?>
<!DOCTYPE APIRequest SYSTEM
"https://url">
<APIRequest>
<Head>
<Key>123</Key>
</Head>
<?xml version="1.0" encoding="utf-16"?>
<ObjectClass>
<Field>Value</Field>
</ObjectClass>
</APIRequest>
</code></pre>
<p>i.e. the serialize statement is automatically adding a <?xml root element.</p>
<p>I know I'm attacking this wrong so can someone point me in the right direction?</p>
<p>As a note, I don't think it will make practical sense to just make an APIRequest class with an ObjectClass in it (because there are say 20 different types of ObjectClass that each needs this boilerplate around them) but correct me if I'm wrong.</p>
http://stackoverflow.com/questions/1042078/net-guitar-chord-library3.NET Guitar Chord LibraryGraphain2009-06-25T03:48:27Z2009-07-07T19:20:18Z
<p>Hi,</p>
<p>I'm wondering if there are any .NET libraries (ideally open-source) that deal with guitar chords (e.g. given either a chord or a set of fret/string combinations it can retrieve the corresponding fret/string combination or chord respectively).</p>
<p>I'm having some trouble searching because "C#" is a note and there is a concept of "programming" musically as well.</p>
http://stackoverflow.com/questions/43021/c-get-index-of-current-foreach-iteration10(C#) Get index of current foreach iterationGraphain2008-09-04T01:38:39Z2009-06-25T23:49:42Z
<p>Hi,</p>
<p>Is there some rare language construct I haven't encountered (like the few I've learned recently, some on Stack Overflow) in C# to get a value representing the current iteration of a foreach loop?</p>
<p>For instance, I currently do something like this depending on the circumstances:</p>
<pre><code>int i=0;
foreach (Object o in collection)
{
...
i++;
}
</code></pre>
<p>Answers:</p>
<p>@bryansh: I am setting the class of an element in a view page based on the position in the list. I guess I could add a method that gets the CSSClass for the Objects I am iterating through but that almost feels like a violation of the interface of that class.</p>
<p>@Brad Wilson: I really like that - I've often thought about something like that when using the ternary operator but never really given it enough thought.</p>
<p>As a bit of food for thought it would be nice if you could do something similar to somehow add (generically to all IEnumerable objects) a handle on the enumerator to increment the value that an extension method returns i.e. inject a method into the IEnumerable interface that returns an iterationindex.</p>
<p>Of course this would be blatant hacks and witchcraft... Cool though...</p>
<p>@crucible: Awesome I totally forgot to check the LINQ methods. Hmm appears to be a terrible library implementation though. I don't see why people are downvoting you though. You'd expect the method to either use some sort of HashTable of indices or even another SQL call, not an O(N) iteration... (@Jonathan Holland yes you are right, expecting SQL was wrong)</p>
<p>@Joseph Daigle: The difficulty is that I assume the foreach casting/retrieval is optimised more than my own code would be.</p>
<p>@Jonathan Holland: Ah, cheers for explaining how it works and ha at firing someone for using it.</p>
http://stackoverflow.com/questions/1042517/c-asp-net-a-variable-thats-accessible-from-any-function-and-is-different-to/1042534#10425342Answer by Graphain for C# ASP.NET - a variable that's accessible from any function, and is different to any user?Graphain2009-06-25T07:09:49Z2009-06-25T07:09:49Z<p>What do you mean access it from another function? What exactly are you accessing? Do you make a new 'classdelcappero'?</p>
<p>You have only declared 'chepalle' and 'frasehiragana' within your Page_Load so their scope ends at the end of that method. Finally you aren't changing the 'frasehiragana' of your 'chepalle' instance (you are just setting a new string) and even if you were you would just be setting it to what it is already by default (String.empty).</p>
<p>One possibility is to have a 'classdelcappero' instance within your page code-behind class. This is set on Page_Load based on a session property (a cookie, the IP, something belonging to your user that you are using to distinguish them). Then any function can just refer to this instance knowing it is already initialised correctly.</p>
<p>For example:</p>
<pre><code>class CodeBehind : Page
{
private classdelcappero chepalle;
protected void Page_Load(object sender, EventArgs e)
{
chepalle = new classedelcappero();
chepalle.frasehiragana = ""; /* value based on user */
}
}
</code></pre>
http://stackoverflow.com/questions/954422/simple-sql-select-sum-and-values-of-same-column0Simple SQL select sum and values of same columnGraphain2009-06-05T05:50:19Z2009-06-05T11:12:23Z
<p>Hi,</p>
<p>I have a co-worker who is working on a table with an 'amount' column.
They would like to get the top 5 amounts and the sum of the amounts in the same query.</p>
<p>I know you could do this:</p>
<pre><code>SELECT TOP 5 amount FROM table
UNION SELECT SUM(amount) FROM table
ORDER BY amount DESC
</code></pre>
<p>But this produces results like this:</p>
<pre><code>1000 (sum)
100
70
50
30
20
</code></pre>
<p>When what they really need is this:</p>
<pre><code>100 | 1000
70 | 1000
50 | 1000
30 | 1000
20 | 1000
</code></pre>
<p>My intuitive attempts to achieve this tend to run into grouping problems, which isn't such an issue when you are selecting a different column, but is when you want to use an aggregate function based on the column you are selecting.</p>
http://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702754#1702754Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T18:45:19Z2009-11-09T18:45:19ZDownside of this method is it's going to deserialize twice as much as it needs tohttp://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702715#1702715Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T18:28:37Z2009-11-09T18:28:37ZYeah it's pretty much XmlSerializer with some added attributes and ability to get around some limitations like private fields and dictionaries etc.http://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702719#1702719Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T18:18:54Z2009-11-09T18:18:54ZBut then I still have to have an entire duplicate hierarchy (oh well).http://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702703#1702703Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T18:18:20Z2009-11-09T18:18:20ZFair enough. The problem would be deserializer would only deserialize the common fields of IEmployee, not the additional stuff of either Employee or SpecialEmployeehttp://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702715#1702715Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T18:17:37Z2009-11-09T18:17:37ZI was trying to avoid duplicating the hierarchy that was all. I'm using a custom deserializer.http://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702719#1702719Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T18:16:56Z2009-11-09T18:16:56ZI guess I could override the 'Employees' field in my SpecialProjectTeam and add an attribute that says to make 'SpecialEmployees' good idea!http://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702703#1702703Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T18:08:53Z2009-11-09T18:08:53ZHow would that help?http://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702593#1702593Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T17:50:59Z2009-11-09T17:50:59ZThanks, it's a possibility but messy in this case I think.http://stackoverflow.com/questions/1702543/changing-type-of-a-field-in-c-at-runtime/1702569#1702569Comment by Graphain on Changing type of a field in C# at runtimeGraphain2009-11-09T17:47:29Z2009-11-09T17:47:29ZBecause if I extend Employee to SpecialEmployee then I need my ProjectTeam to hold SpecialEmployees and my Division to hold ProjectTeams that hold SpecialEmployees etc. Sure if there was no deserialization I could just add a SpecialEmployee to the ProjectTeam but as it stands deserialization will only fill the fields of 'Employee' not 'SpecialEmployee'http://stackoverflow.com/questions/1662637/travelling-visual-studio-developers/1662717#1662717Comment by Graphain on Travelling Visual Studio developersGraphain2009-11-02T19:24:22Z2009-11-02T19:24:22ZMany thanks :-)http://stackoverflow.com/questions/1662637/travelling-visual-studio-developers/1662716#1662716Comment by Graphain on Travelling Visual Studio developersGraphain2009-11-02T18:10:49Z2009-11-02T18:10:49ZThanks, I guessed as much. Nothing you can do against a keylogger I guess.http://stackoverflow.com/questions/1662637/travelling-visual-studio-developers/1662731#1662731Comment by Graphain on Travelling Visual Studio developersGraphain2009-11-02T18:10:09Z2009-11-02T18:10:09ZYeah, I'm a sole freelancer and everyone else I know works with PHP and wordpress only (I'm using ASP.NET MVC and C# forms apps).http://stackoverflow.com/questions/1662637/travelling-visual-studio-developers/1662666#1662666Comment by Graphain on Travelling Visual Studio developersGraphain2009-11-02T18:09:06Z2009-11-02T18:09:06ZThanks for the update - I guessed as much!http://stackoverflow.com/questions/1662637/travelling-visual-studio-developersComment by Graphain on Travelling Visual Studio developersGraphain2009-11-02T18:08:04Z2009-11-02T18:08:04ZDidn't mention using VS though..http://stackoverflow.com/questions/1662637/travelling-visual-studio-developers/1662731#1662731Comment by Graphain on Travelling Visual Studio developersGraphain2009-11-02T18:06:06Z2009-11-02T18:06:06ZYeah agree. It's just I plan on going for 2 months and have clients that depend on me if something goes to hell in my absence. I think I'm inclined to the RDP route (as this is a backup plan that hopefully won't have to happen) but only if it is going to work if it needs to.