active questions tagged anonymous-types - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T07:38:41Zhttp://stackoverflow.com/feeds/tag/anonymous-typeshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1910536/iterating-and-creating-new-anonymous-types-dynamically0Iterating and creating new anonymous types dynamicallyRio2009-12-15T21:29:41Z2009-12-16T05:34:52Z
<p>I have an anonymous type of this form:</p>
<pre><code>new List<MyList>()
{
new Column { Name="blah", Width=100, Hidden=true },
new Column { Name="blah1", Width=60, Hidden=false }
}
</code></pre>
<p>How can I go about creating the content within the list dynamically, like:</p>
<pre><code>new List<MyList>()
{
foreach (var columns in col) {
new Column { Name=columns.Name ... etc }
}
}
</code></pre>
<p>Even with col returning the right sort of data, the above example isn't acceptable and I can't see why.</p>
http://stackoverflow.com/questions/1902673/c-anonymous-type1C# Anonymous TypeRussel2009-12-14T18:37:45Z2009-12-14T18:40:59Z
<p>When I say Anonymous Type Declaration</p>
<blockquote>
<p>var someType = new { Name = "Jon
Skeet", Age = 10 };</p>
</blockquote>
<p>However the Keyword </p>
<pre><code>var is implicitly typed
</code></pre>
<p>but when i print</p>
<pre><code>Response.Write(someType.GetType().Name);
</code></pre>
<p>it produces <code><>f__AnonymousType0</code>2<code>.</code>What is this symbol <code><></code> relates to? </p>
http://stackoverflow.com/questions/1874186/how-to-query-anonymous-type-collection0How to query Anonymous Type collection?Armagan2009-12-09T14:18:30Z2009-12-09T14:54:34Z
<p>How do you query a collection which is populated/created with <code>select new</code>?</p>
<p>I have this <code>BindingSource</code>:</p>
<pre><code>this.bindingSource.DataSource =
from row in db.Table
select new
{
name = row.Name + row.Num.ToString()
};
</code></pre>
<p>I'd like to query it like I do with other BindingSources:</p>
<pre><code>var query = from row in (IEnumerable<Table>)anotherBindingSource.List
where row.name == "asd"
select row;
</code></pre>
<p>Since bindingSource contains anonymous types I get this error:</p>
<blockquote>
<p>Unable to cast object of type
'System.Data.Linq.SortableBindingList<code>1[<>f__AnonymousType8</code>15
<em>etc. etc.</em> to type 'System.Collections.Generic.IEnumerable`1[Table]'.</p>
</blockquote>
<p>What should I do?</p>
http://stackoverflow.com/questions/934956/how-to-use-foreach-in-linq0how to use foreach in linqNair2009-06-01T14:02:51Z2009-12-05T19:40:31Z
<p>I have read in some blog some time ago (sorry for being vague) that i could use a linq like the following</p>
<pre><code>var list = from c in xml
select new
{
foreach(XElement el in c.Elements())
{
}
}
</code></pre>
<p>Does anyone know is it possible or is it just my imagination??</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1832708/iterate-through-iqueryable-of-no-specific-type3Iterate through IQueryable of no specific type?Ryan2009-12-02T12:49:11Z2009-12-02T13:24:51Z
<p>So I have this LINQ query that ends in a custom select kinda like this:</p>
<pre><code>select new { this1 = table.this1, this2 = othertable.this2 }
</code></pre>
<p>The call to that query from the Controller looks something like this:</p>
<pre><code>ViewData["these"] = theRepo.GetAllThese(someVar, anotherVar);
</code></pre>
<p>Now when I pass this on to my view since it is not strongly typed how can I iterate through it with a foreach, how can I cast it as an IQueryable or a List if I don't know what's in it?</p>
<p>...is it something like this?</p>
<pre><code>IQueryable<???> these = ViewData["These"];
foreach (var this in these) {...
</code></pre>
<p>Just need to know what to put for '???' I think.</p>
http://stackoverflow.com/questions/1815252/anonymous-collection-initializer-for-a-dictionary1Anonymous collection initializer for a dictionaryabatishchev2009-11-29T11:08:59Z2009-11-29T16:46:27Z
<p>Is it possible to implicitly declare next <code>Dictionary<HyperLink, Anonymous></code>:</p>
<pre><code>{ urlA, new { Text = "TextA", Url = "UrlA" } },
{ urlB, new { Text = "TextB", Url = "UrlB" } }
</code></pre>
<p>so I could use it this way:</p>
<pre><code>foreach (var k in dic)
{
k.Key.Text = k.Value.Text;
k.Key.NavigateUrl = k.Value.Url;
}
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/1796197/silverlight-security-giving-a-permission-to-access-anonymous-classes-to-a-class0Silverlight security: giving a permission to access anonymous classes to a class libraryNodir2009-11-25T11:03:31Z2009-11-25T15:42:01Z
<p>I'm porting an existing class library to Silverlight. I used lambda expression compilation a lot and now I'm experiencing security problems because of it.</p>
<p>In particular, if an anonymous class from a client SL app is participating in a lambda expression, I cannot compile it: I get a <code>MethodAccessException</code> with the following stack trace:</p>
<pre><code>MethodBase.PerformSecurityCheck(Object obj, RuntimeMethodHandle method, IntPtr parent, UInt32 invocationFlags)
RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
MethodBase.Invoke(Object obj, Object[] parameters)
Expression.Lambda(Type delegateType, Expression body, IEnumerable<T> parameters)
Expression.Lambda(Type delegateType, Expression body, ParameterExpression[] parameters)
Expression.Lambda(Expression body, ParameterExpression[] parameters)
</code></pre>
<p>I tried to use <code>InternalsVisibleTo</code> in the client SL app to expose anonymous classes to my class library, but it didn't help. Actually it should help, but I cannot understand why it does not.</p>
<p>Any ideas?</p>
<p><b>UPDATE</b>:<br>
I've figured out that the problem is not in lambda expressions, but in dynamic generic method invocation:</p>
<p>If we have the following code in a class library:</p>
<pre><code>public class LibClass
{
public static void StaticReceive<T>(T x)
{
Process<T>(x);
}
public static void DynamicReceive(object x)
{
typeof(LibClass).GetMethod("Process", BindingFlags.NonPublic | BindingFlags.Static)
.MakeGenericMethod(x.GetType())
.Invoke(null, new object[] { x });
}
static void Process<T>(T x)
{
// some work with typed x
}
}
</code></pre>
<p>and we call the StaticReceive method from the app like this:</p>
<pre><code>class InternalClass { }
void MethodInUserApp()
{
var x = new InternalClass();
LibClass.StaticReceive(x);
}
</code></pre>
<p>it works OK, but if we use <code>DynamicReceive</code>, it fails. It looks like CLR considers the <code>x</code> parameter in the <code>Process</code> method as of type <code>InternalClass</code>, not generic <code>T</code>, and since <code>InternalClass</code> is not accessible for the library, forbids its invocation.</p>
<p>It looks like a bug, no?</p>
http://stackoverflow.com/questions/1758363/entity-framework-how-to-partially-populate-an-entity0Entity Framework: How to partially populate an EntityNan Li2009-11-18T19:16:48Z2009-11-18T21:43:30Z
<p>When creating a query with EF, Normally we will create an anonymous type in order to limit the number of columns returned.</p>
<p>But anonymous type cannot be returned or used as a parameter to a method call, which means all work related to that anonymous object should be done inside a single method. This is really bad.</p>
<p>And certainly, we don't want to create explicit types just to represent a subset of an existing entity.</p>
<p>In my point of view, we still wanna play with the existing entity (like Person), but in different scenarios, we just care about certain properties. So I believe the best way is to partially populate an entity. But it seems Linq 2 EF does not support it.</p>
<p>Any suggestions?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1724308/problems-with-linq-using-anonymous-type1Problems with Linq using anonymous typeFernando2009-11-12T18:21:22Z2009-11-12T18:29:20Z
<p>Why did the anonymous type property "Points" still have the value "0"?</p>
<pre><code>Public Class Test
Public Sub New(ByVal _ID As Integer)
ID = _ID
End Sub
Public ID As Integer
End Class
Dim list As New List(Of Test)
list.Add(New Test(1))
list.Add(New Test(2))
list.Add(New Test(3))
Dim query = From X In list Select New With {.Points = 0, X.ID}
For Each o In query
o.Points = 1
Next
</code></pre>
http://stackoverflow.com/questions/1705341/when-selecting-an-anonymous-type-with-linq-from-ef-is-there-no-way-to-run-a-meth0When selecting an anonymous type with LINQ from EF, is there no way to run a method on an object as you select it?Matt2009-11-10T02:44:18Z2009-11-10T02:57:40Z
<p>Let's say I have a method:</p>
<pre><code>bool myMethod(int a)
{
//return a bool
}
</code></pre>
<p>So let's say I the following</p>
<pre><code>// assume a has prop1 and prop2 both ints
var mySelection = from a in myContainer
where a=somecondition
select new {
a.prop1,
myMethod(a.prop2)
};
</code></pre>
<p>Is there really no way to run myMethod in the anonymous type declaration? Is there some sort of trick? </p>
<p>Can I put an anonymous method in there to return the equivalent of myMethod(a.prop2)?</p>
http://stackoverflow.com/questions/607433/net-databinding-referencing-anonymous-type-properties1.net Databinding - Referencing Anonymous Type PropertiesRonnie Overby2009-03-03T17:56:24Z2009-11-05T10:56:12Z
<p>I have bound an ASP.net GridView to a collection of anonymous types.</p>
<p>How can I reference one of the properties of the anonymous types in the RowDataBound event handler?</p>
<p>I am already aware of the way to cast the anonymous type like this:</p>
<pre><code>protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
var AnonObj = Cast(e.Row.DataItem,
new { StringProperty = "", BoolProperty = false, IntProperty = 0 });
if (AnonObj.BoolProperty)
{
e.Row.Style.Add(HtmlTextWriterStyle.Color, "Red");
}
}
}
T Cast<T>(object obj, T type)
{
return (T)obj;
}
</code></pre>
<p>I think most would say this is messy, even though it does work. In my real code, I have more than 3 properties and I would have to update code in two places anytime I added or reordered the properties of my anonymous type.</p>
<p>Is there a better way to tell e.Row.DataItem that it has a specific property of a specific type and force the object to give me that value (besides creating a class)?</p>
http://stackoverflow.com/questions/1630277/is-there-a-linq-operation-to-determine-whether-there-are-items-in-a-collection-wh1Is there a Linq operation to determine whether there are items in a collection who have the same values for a pair of properties?Corpsekicker2009-10-27T11:44:59Z2009-11-02T05:01:01Z
<p>C#: I have a collection of objects . T has 2 properties. Property A and Property B. The rule that this collection needs to adhere to is that the combination of values for A and B must be unique within the collection. In other words, A and B need to serve as a composite primary key.</p>
<p>Is there an operation in Linq I can use to check this condition? I'd expect it to be something like </p>
<pre><code>if (items.Select(x => x.Name).Distinct().Count() != items.Select(x => x.Name).Count())
</code></pre>
<p>The above statement is how I would check whether there are items in the collection which have duplicate Names, but I don't know how to do it for more than one property.</p>
http://stackoverflow.com/questions/1650681/determining-whether-a-type-is-an-anonymous-type3Determining whether a Type is an Anonymous Typefrou2009-10-30T15:58:59Z2009-10-30T16:42:35Z
<p>In C# 3.0, is it possible to determine whether an instance of <code>Type</code> represents an Anonymous Type?</p>
http://stackoverflow.com/questions/612689/a-generic-list-of-anonymous-class4A generic list of anonymous classDHornpout2009-03-04T22:08:47Z2009-10-30T09:07:30Z
<p>In C# 3.0 you can create anonymous class with the following syntax</p>
<pre><code>
var o = new { Id = 1, Name = "Foo" };
</code></pre>
<p>Is there a way to add these anonymous class to a generic list?</p>
<p>Example:</p>
<pre><code>var o = new { Id = 1, Name = "Foo" };
var o1 = new { Id = 2, Name = "Bar" };
List<var> list = new List<var>();
list.Add(o);
list.Add(o1);
</code></pre>
<p>Another Example:</p>
<pre><code>List<var> list = new List<var>();
while (....)
{
....
list.Add(new {Id = x, Name = y});
....
}
</code></pre>
http://stackoverflow.com/questions/1642733/dynamically-set-the-property-name-of-a-c-anonymous-type2Dynamically set the property name of a C# anonymous typeKayes2009-10-29T10:22:02Z2009-10-30T04:48:37Z
<p>Is there any way to dynamically set the property name of an anonymous type?</p>
<p>Normally we'd do like this:</p>
<pre><code>var anon = new { name = "Kayes" };
</code></pre>
<p>Now I'd like to set the name (or identifier) of the property dynamically, so that this name can come from an XML file or a database.</p>
http://stackoverflow.com/questions/1519851/creating-a-dynamic-anonymous-types-vairables1Creating a dynamic anonymous types vairablesAhmed Magdy2009-10-05T12:42:29Z2009-10-29T04:30:17Z
<p>Hello,
I would like to ask if i can create a anonymous type variable and later on i can add more Properties? like
<code>var x = new { Name = "Ahmed" };</code> and want to add <code>Age</code> to it?
how i can do this?</p>
<p>Another question: i saw on some blogs a type <code>AnonymousType</code> what is the name space for this class? here is am example http://www.codeproject.com/KB/cs/AnonymousTypesInCSharp.aspx</p>
http://stackoverflow.com/questions/1640937/net-3-5-anonymous-foreach0.net 3.5 anonymous foreachphxis2009-10-29T00:11:32Z2009-10-29T00:42:53Z
<p>I'm trying to loop through the results of a function that is returning an anonymous object of results.</p>
<pre><code>public static object getLogoNav()
{
XDocument loaded = XDocument.Load(HttpContext.Current.Request.MapPath("~/App_Data/LOGO_NAV_LINKS.xml"));
var query = from x in loaded.Elements().Elements()
select new
{
Name = x.FirstAttribute.Value,
Value = x.Value
};
return query;
}
</code></pre>
<p>codebehind page:</p>
<pre><code> var results = Common.getLogoNav();
foreach(var nav in results) {
string test = nav.Name;
}
</code></pre>
http://stackoverflow.com/questions/1635435/a-simple-and-succinct-definiton-and-explanation-of-anonymous-types-in-c0A simple and succinct definiton and explanation of anonymous types in C#?RCIX2009-10-28T06:04:24Z2009-10-28T07:06:23Z
<p>I have no clue what an "anonymous type" is in C# nor how it is used. Can somone give me a good description of it and it's use?</p>
<p>[Note: i really know what it is and how to use it but thought i'd ask for those that don't]</p>
http://stackoverflow.com/questions/1627360/how-do-i-get-values-from-selecteditem-in-combobox-with-linq-and-c-3-51How do I get values from SelectedItem in ComboBox with Linq and C# 3.5WindyCityEagle2009-10-26T21:09:35Z2009-10-27T14:05:28Z
<p>I am really missing something with anonymous types, because I can't figure out what to do with the Combobox.SelectedItem property.</p>
<p>Here's the code that populates the combobox, and it works just fine</p>
<pre><code> var stocks = from st in brdc.tb_dStocks
join su in brdc.tb_rStockUsers on st.StockID equals su.StockID
where su.UserID == userRec.UserID
select new { st.StockID, su.StockUserID, st.Ticker };
cboStocks.ItemsSource = stocks;
cboStocks.DisplayMemberPath = "Ticker";
</code></pre>
<p>Then, when someone selects an item using the cboStocks combobox I need to figure out what that item is, but I have no idea how to do it. Clearly, this is a simple problem, but its confusing me greatly. cboStocks.SelectedItem is an object, and that object is of the anonymous type created by Linq, but thats all I can figure out.</p>
http://stackoverflow.com/questions/543482/linq-select-distinct-with-anonymous-types9LINQ Select Distinct with Anonymous TypesGWLlosa2009-02-12T21:46:57Z2009-10-26T20:58:11Z
<p>So I have a collection of objects. The exact type isn't important. From it I want to extract all the unique pairs of a pair of particular properties, thusly:</p>
<pre><code>myObjectCollection.Select(item=>new
{
Alpha = item.propOne,
Bravo = item.propTwo
}
).Distinct();
</code></pre>
<p>So my question is: Will Distinct in this case use the default object equals (which will be useless to me, since each object is new) or can it be told to do a different equals (in this case, equal values of Alpha and Bravo => equal instances)? Is there any way to achieve that result, if this doesn't do it? </p>
http://stackoverflow.com/questions/1619518/a-dictionary-where-value-is-an-anonymous-type-in-c4A dictionary where value is an anonymous type in C#abatishchev2009-10-24T23:43:18Z2009-10-25T00:59:42Z
<p>Is it possible in C# 3.net to create a <code>System.Collections.Generic.Dictionary<TKey, TValue></code> where <code>TKey</code> is unconditioned class and <code>TValue</code> - an anonymous class with a number of properties, for example - database column name and it's localized name.</p>
<p>Something like this:</p>
<pre><code>new { ID = 1, Name = new { Column = "Dollar", Localized = "Доллар" } }
</code></pre>
http://stackoverflow.com/questions/1585636/why-cant-new-anonymoustype-anonymoustype-be-casted-to-ienumerable0Why can't new[] {AnonymousType, AnonymousType} be casted to IEnumerable?SharePoint Newbie2009-10-18T18:23:29Z2009-10-22T21:27:32Z
<p>Hi,</p>
<p>I have an array of an anonymous type declared as:</p>
<pre><code>var list = new[]
{
new {Name = "A", Age = 10},
new {Name = "B", Age = 15}
}
</code></pre>
<p>Now list inherits from type Array, which implements IEnumerable. Why does the following fail:</p>
<pre><code>Convert.ChangeType(list, typeof(IEnumerable));
</code></pre>
<p>This also fails: </p>
<pre><code>Convert.ChangeType(list, typeof(Array));
</code></pre>
<p>Kind regards,</p>
http://stackoverflow.com/questions/1572722/how-can-i-extract-value-of-properties-from-anonymous-class0How can i extract value of properties from anonymous class ?linqfying2009-10-15T14:29:59Z2009-10-15T14:35:03Z
<p>When i declare</p>
<pre><code>object o = new { name = "Bruce",Age=21 };
Console.WriteLine("name={0},age={1}",???,??? );
</code></pre>
<p>Now how can i print value of name and age?</p>
http://stackoverflow.com/questions/1567173/wcf-and-anonymous-types0WCF and Anonymous TypesTamim Sadikali2009-10-14T15:42:56Z2009-10-14T16:10:33Z
<p>I want to return an anonymous type over WCF. Is this possible?</p>
http://stackoverflow.com/questions/869610/c-resolving-a-parameter-name-at-runtime4C# - Resolving a parameter name at runtimefrou2009-05-15T16:16:44Z2009-10-13T02:08:38Z
<p>In C#, is there a way (terser the better) to resolve the name of a parameter at runtime?</p>
<p>For example, in the following method, if you renamed the method parameter, you'd also have to remember to update the string literal passed to ArgumentNullException.</p>
<pre><code> public void Woof(object resource)
{
if (resource == null)
{
throw new ArgumentNullException("resource");
}
// ..
}
</code></pre>
http://stackoverflow.com/questions/1550797/c-anonymous-types-problem2C# Anonymous types problemJMSA2009-10-11T14:20:16Z2009-10-11T15:15:32Z
<p>What is wrong with this code-snippet?</p>
<pre><code>class Program
{
static void Main(string[] args)
{
var obj = new { Name = "A", Price = 3.003 };
obj.Name = "asdasd";
obj.Price = 11.00;
Console.WriteLine("Name = {0}\nPrice = {1}",
obj.Name, obj.Price);
Console.ReadLine();
}
}
</code></pre>
<p>I am getting the following errors:</p>
<pre><code>Error 5 Property or indexer 'AnonymousType#1.Name' cannot be assigned to -- it is read only .....\CS_30_features.AnonymousTypes\Program.cs 65 13 CS_30_features.AnonymousTypes
Error 6 Property or indexer 'AnonymousType#1.Price' cannot be assigned to -- it is read only .....\CS_30_features.AnonymousTypes\Program.cs 66 13 CS_30_features.AnonymousTypes
</code></pre>
<p>How to re-set values into an anonymous type object?</p>
http://stackoverflow.com/questions/1514944/how-does-c-turn-a-variable-name-into-an-anonymous-object-property-name2How does C# turn a variable name into an anonymous object property name?John Sheehan2009-10-03T21:51:35Z2009-10-04T07:48:25Z
<p>When you create a new anonymous object using the following syntax:</p>
<pre><code>string name = "Foo";
var myObject = new { name };
</code></pre>
<p>You get an object with a property named 'name':</p>
<pre><code>myObject.name == "Foo"; //true
</code></pre>
<p>What method does C# use to extract the variable name?</p>
http://stackoverflow.com/questions/1504455/what-relevant-differences-are-there-between-anonymous-and-predefined-classes-in-j2What relevant differences are there between anonymous and predefined classes in Java?Hanno Fietz2009-10-01T14:57:11Z2009-10-01T15:35:48Z
<p>I have a large tree-like data structure of objects which behave mostly identical but differ in one or two methods that calculate some keys used to navigate through the structure. The divergent behaviour depends on where the objects are in the structure.</p>
<p>I was starting out with an abstract base class and have several subclasses that implement each type of behaviour. This gives me around ten subtypes which are a) hard to name intelligently and b) look a little unwieldy in my project's source folder, both because they are so similar.</p>
<p>I would prefer having a single factory class that doles out instances of anonymous subclasses on the fly. This would give me a lot of flexibility and open the door for a lot of nice improvements, such as sharing data and parametrizing stuff and would look a lot cleaner in my code structure. However, the whole thing is very sensitive to memory footprint and memory access time, and I'd have lots of these objects. Do I have to consider any disadvantages or pecularities of anonymous classes?</p>
http://stackoverflow.com/questions/1474080/linq-filter-anonymous-type-based-on-ienumerable-values-within-type1LINQ Filter anonymous type based on IEnumerable values within type Nick2009-09-24T20:51:16Z2009-09-24T21:07:09Z
<p>I'm using LINQ to SQL like: </p>
<pre><code>var b =
from s in context.data
select new
{
id = s.id,
name = s.name
myEnumerable = s.OneToMany
};
</code></pre>
<p>Where myEnumerable is of type <code>IEnumberable<T></code> and I want to now get a subset of <code>b</code> based upon properties of the individual items of <code>myEnumerable</code>. For example, say <code><T></code> has properties <code>Berry</code> and <code>BerryID</code>, I would want to do something like:</p>
<pre><code>b =
from p in b
where //p.myEnumerable.myType.BerryID== 13
select p;
</code></pre>
<p>I'm feel like I'm missing something easy...</p>
http://stackoverflow.com/questions/1416819/passing-linq-results-to-a-function2Passing LINQ Results to a functionapocalypse92009-09-13T04:08:25Z2009-09-13T04:32:00Z
<p>I have a class called UserInfo that contains details about a given user.</p>
<p>There are several places in code where the data might be queried and I'd like to have a single function to fill the UserInfo object with the corresponding data from the Linq Query.</p>
<pre><code> var userData = dc.Users.Where(λ => (λ.Login == username) && λ.Active)
.Select(λ => new { λ.ID, Salt = λ.Seasonings.Single().Salt, λ.Login, λ.PassHash, λ.Admin, λ.Trusted, λ.E_mail, λ.Name, λ.Phone, λ.Note, λ.RegistrationDate }).SingleOrDefault();
string tmppass = generatePassHash(password, userData.Salt);
if (userData.PassHash.Trim() == tmppass.Trim())
{
ID = userData.ID;
// Here is the stuff i'd like to move to a function
_user._id = userData.ID;
_user._userState = State.NotAuthorized;
_user._username = userData.Login;
_user._name = userData.Name;
_user._email = userData.E_mail;
_user._phone = userData.Phone;
_user._notes = userData.Note;
...
}
</code></pre>
<p>How do I properly set up a function to accept this anonymous type as an argument? Do I need to declare a new interface or is there a simpler way?</p>
<p>Thanks for the help!</p>
<p>PS- sorry for the excessive underscores, nested classes make things a bit messy.</p>