hot questions tagged object-initializers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:31:12Zhttp://stackoverflow.com/feeds/tag?tagnames=object-initializers&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1646083/difference-between-initializer-or-static-initiliazer0Difference between Initializer or Static Initiliazer ?Aaron2009-10-29T19:42:10Z2009-10-29T19:50:22Z
<p>Hi Folks,</p>
<p>When I was working with <code>XmlDOM</code> in Asp.Net, there was a pattern like this : `XmlReader reader = XmlReader.Create()".</p>
<p>And then I encountered the same pattern several times later.</p>
<p>I like to know what's the difference between Static Constructor and "new ClassName()" Constructor (I am not sure if I am using right terms to describe what I mean).</p>
<p>I am not asking what <code>XmlReader.Create()</code> does, what I want to learn is why I would use static constructor over than ? What kind of aspect would it provide ? What are the things I can do with static constructor but I can't do with new keyword constructor.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1595324/passing-css-class-name-to-asp-mvc-view-helper1passing css class name to asp.mvc view helperAdam2009-10-20T15:09:07Z2009-10-20T15:10:17Z
<p>In ASP.NET MVC view helper, you can do something like</p>
<pre><code><%= Html.ActionLink("click me", "DoSomething", null, new { someAttribute = "a value" } ) %>
</code></pre>
<p>which will produce the following HTML</p>
<pre><code><a href="DoSomething" someAttribute="a value">click me</a>
</code></pre>
<p>My question is.... what if I want to set the "class" attribute? </p>
<pre><code><%= Html.ActionLink("click me", "DoSomething", null, new { class = "a-class-name" } ) %>
</code></pre>
<p>That won't compile because "class" is a reserved word.</p>
<p>Is there a work-around?</p>
http://stackoverflow.com/questions/1562461/c-3-0-object-initialation-is-there-notification-that-the-object-is-being-initi4C# 3.0 Object Initialation - Is there notification that the object is being initialized?Yoooder2009-10-13T19:34:54Z2009-10-13T19:48:13Z
<p>We have several domain objects which need to support both read-only and read-write modes; they currently have a <code>bool Locked</code> property for this--when <code>Locked</code> attempts to alter properties on the object result in an <code>InvalidOperationException</code>. The default state for the objects is Locked.</p>
<p>The object-initialization syntax of C# 3 introduces a small issue with these, in that the object must be unlocked (or default to be unlocked) during initialization and then locked explicityly at the end.</p>
<p>When using C# 3's object initialization syntax is there a means of receiving notification that the object is being intitialized or that initialization is complete? <code>System.ComponentModel.ISupportInitialize</code> was my best hope, but it doesn't get called.</p>
http://stackoverflow.com/questions/558916/what-am-i-doing-wrong-with-c-object-initializers6What am I doing wrong with C# object initializers?dmce2009-02-17T22:03:23Z2009-02-17T23:44:16Z
<p>When i initialize an object using the new object initializers in C# I cannot use one of the properties within the class to perform a further action and I do not know why.</p>
<p>My example code:</p>
<pre><code>Person person = new Person { Name = "David", Age = "29" };
</code></pre>
<p>Within the Person Class, x will equal 0 (default):</p>
<pre><code>public Person()
{
int x = Age; // x remains 0 - edit age should be Age. This was a typo
}
</code></pre>
<p>However person.Age does equal 29. I am sure this is normal, but I would like to understand why.</p>
http://stackoverflow.com/questions/199718/can-you-instantiate-an-object-instance-from-json-in-net3Can you Instantiate an Object Instance from JSON in .NET?Chris Pietschmann2008-10-14T01:30:52Z2008-11-18T19:45:28Z
<p>Since Object Initializers are very similar to JSON, and now there are Anonymous Types in .NET. It would be cool to be able to take a string, such as JSON, and create an Anonymous Object that represents the JSON string.</p>
<p>Use Object Initializers to create an Anonymous Type:</p>
<pre><code>var person = new {
FirstName = "Chris",
LastName = "Johnson"
};
</code></pre>
<p>It would be awesome if you could pass in a string representation of the Object Initializer code (preferably something like JSON) to create an instance of an Anonymous Type with that data.</p>
<p>I don't know if it's possible, since C# isn't dynamic, and the compiler actually converts the Object Initializer an<a href="http://www.developer.com/net/csharp/article.php/3589916" rel="nofollow">d Anonymous Type into strongly typed code that can run. This is explained in</a> this article.</p>
<p>Maybe functionality to take JSON and create a key/value Dictionary with it would work best.</p>
<p>I know you can serialize/deserializer an object to JSON in .NET, but what I'm look for is a way to create an object that is essentially loosely typed, similarly to how JavaScript works.</p>
<p>Does anyone know the best solution for doing this in .NET?</p>
<p>UPDATE: Too clarify the context of why I'm asking this... I was thinking of how C# could better support JSON at the language level (possibly) and I was trying to think of ways that it could be done today, for conceptual reasons. So, I thought I'd post it here to start a discussion.</p>
http://stackoverflow.com/questions/373366/c-object-initializers-and-v2-0-compiler-error0C# Object Initializers and v2.0 compiler errorMatthew Savage2008-12-17T01:07:23Z2008-12-30T13:08:06Z
<p>I'm having an issue setting up one of my projects in TeamCity (v4.0), specifically when it comes to using Object Initializers.</p>
<p>The project builds fine normally, however it would seem that TeamCity transforms the build file into something it likes (some MSBuild mutation) and when it comes to compiling the code for a part of the solution it balks when it sees an Object Initializer.</p>
<p>Specifically the errors are:</p>
<pre><code>[11:16:21]: ErrorView.xaml.cs(22, 187): error CS1026: ) expected
[11:16:21]: ErrorView.xaml.cs(22, 208): error CS0116: A namespace does not directly contain members such as fields or methods
[11:16:21]: ErrorView.xaml.cs(27, 16): error CS1518: Expected class, delegate, enum, interface, or struct
[11:16:21]: ErrorView.xaml.cs(35, 16): error CS1518: Expected class, delegate, enum, interface, or struct
[11:16:21]: ErrorView.xaml.cs(46, 91): error CS1031: Type expected
[11:16:21]: ErrorView.xaml.cs(46, 119): error CS0116: A namespace does not directly contain members such as fields or methods
[11:16:21]: ErrorView.xaml.cs(48, 17): error CS1022: Type or namespace definition, or end-of-file expected
</code></pre>
<p>When I look into this further it would seem the problem ties back to the transformation of the build file to TeamCity format using CSC from the v2.0 framework directory.</p>
<p>Is it possible to compile code using object initializers (a .NET 3.0 feature) with the .NET 2.0 compiler (I would assume not, though I may be missing something), and if not, does anyone know a way to force it to use the 3.0 compiler (if one exists) or the 3.5 compiler?</p>
<p>For those interested, the CSC command being executed is:</p>
<pre><code>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /errorreport:prompt /warn:4 /define:DEBUG;TRACE
/reference:..\..\..\build\blah.Logging.dll /reference:..\..\..\build\blah.Presentation.Interfaces.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.dll /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationCore.dll"
/reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.dll"
/reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.Luna.dll"
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll
/reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll
/reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\UIAutomationProvider.dll"
/reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase.dll" /debug+ /debug:full /filealign:512
/keyfile:..\..\..\resources\blah.snk /optimize- /out:obj\Debug\blah.dll
/resource:obj\Debug\blah.UserInterface.Properties.Resources.resources
/resource:obj\Debug\blah.UserInterface.blah.exe.license /target:library
/win32icon:blah.ico SignalStrengthIndicator.xaml.cs TrayNotifier.xaml.cs ConnectedView.xaml.cs ConnectionProgressView.xaml.cs NetworkPasswordView.xaml.cs
TrayProgress.xaml.cs NetworkConnectionView.xaml.cs ClassFiles\NetworkTypeConverter.cs
ClassFiles\SecurityImageConverter.cs ClassFiles\SecurityTooltipConverter.cs
ClassFiles\SignalStrengthTooltipConverter.cs ClassFiles\SignalVisibilityConverter.cs
ClassFiles\SynchronizedObservableCollection.cs ConnectionOption.xaml.cs
DisconnectionProgressView.xaml.cs ErrorView.xaml.cs ..\..\..\config\assemblyversion.cs
Properties\Resources.Designer.cs Properties\Settings.Designer.cs
</code></pre>
<p>Thanks!</p>
<p>Update: I have partially (read: I'm not happy with it) fixed the problem by changing the build runner from Nant to command runner - this just executed the Nant build file as it was intended without any manipulation, though the feedback level is different. Any other suggestions would be appreciated.</p>
http://stackoverflow.com/questions/483658/why-i-cannot-use-object-initializers-in-asp-net-2-01Why I cannot use Object Initializers in ASP.NET 2.0 ?abatishchev2009-01-27T14:43:57Z2009-01-27T15:08:46Z
<p>Why I can use <code>Object Initializers</code> in Visual Studio 2008 Windows projects, etc targeted to .NET 2.0 but cannot - in ASP.NET projects targeted to .NET 2.0 ?</p>
<p>I understand that this is C# 3.0 features, but don't - why this possible to use in .NET 2.0 projects.</p>
http://stackoverflow.com/questions/495616/order-of-operations-using-object-initializer-syntax0Order of operations using Object Initializer SyntaxMicah2009-01-30T14:14:56Z2009-01-30T17:00:40Z
<p>Does the order in which I set properties using the object initializer syntax get executed in the exact same order?</p>
<p>For instance if I do this:</p>
<pre><code>var s = new Person { FirstName = "Micah",
LastName = "Martin",
IsLoaded = true
}
</code></pre>
<p>will each property get set in the same order?</p>
http://stackoverflow.com/questions/620484/object-initialization-and-named-constructor-idiom1Object Initialization and "Named Constructor Idiom"GWLlosa2009-03-06T21:26:17Z2009-03-06T21:39:23Z
<p>Ok. So I have a list of values, and I'd like to do something like the following:</p>
<pre><code>MyObjectValues
.Select(currentItems=>new MyType()
{
Parameter1 = currentItems.Value1,
Parameter2 = currentItems.Value2
});
</code></pre>
<p>So here's the problem. I need the above example to work with named constructors, such as:</p>
<pre><code>MyObjectValues
.Select(currentItems=>MyType.GetNewInstance()
{
Parameter1 = currentItems.Value1,
Parameter2 = currentItems.Value2
});
</code></pre>
<p>Is there any way I can do that? Basically, I have a static method I need to call to get the object instance back, and I'd like to initialize it as above.</p>
<p>EDIT: I don't have an easy way to modify the interface of MyType at present, so adding new function calls (while probably the 'best' approach) isn't very practical at the moment.</p>