User chester89 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:20:20Zhttp://stackoverflow.com/feeds/user/28298http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1789081/if-property-or-field-is-excluded-when-model-binding-what-value-will-it-have0If property or field is excluded when model-binding, what value will it have?chester892009-11-24T10:01:01Z2009-11-24T10:10:48Z
<p>The question is in the title, actually - let's say I have a simple class like this:<br></p>
<pre><code>public class Product {
public Int32 ID { get; set; }
public String Name { get; set; }
//...
}
</code></pre>
<p>When I use it in action method, like this:</p>
<pre><code>public ViewResult DoSomething([Bind(Exclude="ID")]Product product] {
//...
}
</code></pre>
<p>what value will product.ID have inside this action method? Maybe it will be default value for Int32? And null in case ID is reference-type? I'm just interested, didn't find it on the web.</p>
http://stackoverflow.com/questions/1751227/how-do-i-create-an-excel-xlsx-file-on-the-fly-on-asp-net-webforms-site0How do I create an Excel .xlsx file on-the-fly on ASP.NET Webforms site ?chester892009-11-17T19:36:38Z2009-11-21T21:23:07Z
<p>I need to export timetable from the database to Excel file on-the-fly on ASP.NET WebForms site. <br>When user clicks "Export to Excel" link, he gets this file generated. I don't want to generate it explicitly and store on a server to provide download-on-a-demand, because then it'll be hundreds of files. I have all the data to do it, so the question is only about what approach to use. <br>
One of my colleagues done this before in a very ugly way - he created separate web page, pushed all the data needed for export to a StringBuilder instance, then wrote all its contents to Response object, and added an appropriate headers to make it look like Excel file. All this work is <b>300 loc done in Page_Load event handler</b>. <br>
And our server hasn't Excel installed - yet another tricky thing.<br>
Any suggestions? Thanks in advance</p>
http://stackoverflow.com/questions/1734003/something-wrong-with-my-gdb-or-kdevelop-ide0Something wrong with my gdb or KDevelop IDE?chester892009-11-14T11:37:59Z2009-11-17T10:45:47Z
<p>I have Ubuntu 9.04 and KDevelop IDE.<br>
When I am trying to debug C++ console app, it tells me:<br>
GDB cannot use the tty* or pty* devices.
Check the settings on /dev/tty* and /dev/pty*
As root you may need to "chmod ug+rw" tty* and pty* devices and/or add the user to the tty group using "usermod -G tty username".<br>
I installed gcc and gdb, and project compiles OK. Do you have any suggestions?
(My apologizes if it is a noobie question)</p>
http://stackoverflow.com/questions/1638745/trouble-with-codeblocks-installation-on-ubuntu-9-100Trouble with codeblocks installation on Ubuntu 9.10chester892009-10-28T17:18:43Z2009-10-29T04:01:25Z
<p>I installed Code::Blocks on Ubuntu 9.10, but when I start it from terminal, it shows the following error:<br>
relocation error: /usr/lib/libcodeblocks.so.0: symbol _Z18wxSafeConvertWX2MBPKw, version WXU_2.8.2 not defined in file libwx_baseu-2.8.so.0 with link time reference<br>
What is wrong with it? It seems to me I have installed all necessary libraries. Any ideas?<br>
P.S. I am a Linux noobie - so sorry if it is some kind of a well-known mistake.</p>
http://stackoverflow.com/questions/1629615/is-it-okay-if-my-unit-tests-content-1-2-methods-per-class3Is it okay if my unit tests content 1-2 methods per class?chester892009-10-27T09:21:46Z2009-10-27T10:57:04Z
<p>When I`m testing my simple geometric library, I usually have one or two methods in every test class. All I check is whether objects do proper coordinates calculation or not. Is it okay (meaning the number of methods)?</p>
http://stackoverflow.com/questions/235579/good-books-on-qt-and-boost-libraries4Good books on QT and Boost librarieschester892008-10-24T23:17:03Z2009-10-24T16:17:22Z
<p>Hi everyone,
I'd like you to recommend some fine books on Boost and QT libraries. I've been learning C++ for more than a year, I've learned the syntax and language basics, it's gotchas, a few development features and gotcha's. I don't have big experience in development. Read Eckel (Thinking in C++), Meyers. </p>
http://stackoverflow.com/questions/1594841/which-language-to-use-for-implementing-few-linux-shell-commands-homework-plai1Which language to use for implementing few Linux shell commands (homework) - plain C or C++?chester892009-10-20T14:03:42Z2009-10-20T14:40:32Z
<p>I need to implement a few commands of Linux shell for my homework - 5 or 6 of them, including ls. Do not know much about which parameters to implement for each of commands... <br>
I planned to use C++, but when I asked my colleague for advice what language to choose - plain C or C++, he said that interpreter was not a program in traditional meaning, it`s a functional tool, and it absolutely must be implemented in C.<br>
My arguments on C++ is great code reuse, better separation of concerns, and in fact I do not know C very well - actually, I learned C++ and enjoyed it.<br>
So, what is your point on this? Thanks in advance.<br>
<b>It is an individual assignment - I mean for every person in my group, so no collaboration supposed. </b><br>
<b>I have experience of low level programming, pointers arithmethic, void*, etc.</b></p>
http://stackoverflow.com/questions/1298586/how-do-i-separate-my-entities-from-database-model0How do I separate my entities from database model?chester892009-08-19T08:51:12Z2009-10-18T09:00:03Z
<p>I need some help to organize my data model well.<br>
I am writing an app which will be a simple notebook. I use a three-tier architecture =
business-logic, data-logic, database access. <br>
I`d like to use system of tags so it will be easier to search info in the app. Here are few questions<br>
- due to separation of concerns, classes of entities and classes supporting tag search through these entities must be different. so, what is the best way to do it - encapsulation or inheritance?<br>
- is it a good idea to separate entity classes from classes which retrieves and gives information to the database? If yes, it will be 4 levels - entity classes, database classes, tag-search helpers and BL classes.<br></p>
http://stackoverflow.com/questions/615100/should-i-learn-python-after-c4Should I learn Python after C++?chester892009-03-05T14:52:34Z2009-10-15T08:45:27Z
<p>Hi guys, I`m currently studying C++ and want to learn another language.<br>
For work I use C# + ASP (just started learning it, actually), but I want something "less Microsoft" and powerful.<br>
I have heard Python is a popular and powerful language, not so complicated as C++. But many people mentioned it was hard for them to get back to C++/Java from Python because they started thinking in it, get used to absence of memory management, etc.
What do you recommend?</p>
http://stackoverflow.com/questions/1540452/how-to-restore-vs-project-template-for-test-if-i-deleted-it-by-mistake0How to restore VS project template for test if I deleted it by mistake?chester892009-10-08T21:00:38Z2009-10-08T21:04:54Z
<p>When I was installing some new templates for VS, I deleted built-in test project template by mistake. How can I restore it?</p>
http://stackoverflow.com/questions/1521912/a-problem-with-castle-core-dll0A problem with Castle.Core.dllchester892009-10-05T19:23:16Z2009-10-06T08:03:48Z
<p>Hi everybody, <br>
the thing is I have an issue with Castle.Core.dll. I've installed RC3 from their website, so I have 1.0.3.0 version of DLL.<br>
I`m studying MVC framework using Steve Sanderson's book (which is great, btw) and running samples.
Project compiled successfully, all was running, but suprisingly today I've got this runtime exception:<br></p>
<pre><code>Method not found: 'Void Castle.Core.Configuration.ConfigurationCollection.AddRange(Castle.Core.Configuration.ConfigurationCollection)'
</code></pre>
<p><br>It's strange because before today project was OK, all worked well. I checked on RedGate's Reflector - this method <b>is present</b> in the DLL.<br>
So, any ideas what I've done wrong? I restarted VS, deleted reference and added it again - in vain:(. Googling does nothing for me - many people have similar troubles, but not exactly.<br>
<b>EDIT:</b>
And, by the way, I've tried Steve's code downloaded from apress.com. It didn`t work - the reason is the same.</p>
http://stackoverflow.com/questions/1485950/is-frequent-downcasting-in-class-hierarchy-always-evil4Is frequent downcasting in class hierarchy always evil?chester892009-09-28T08:14:56Z2009-10-02T00:43:47Z
<p>From what I`ve learned, it is no good if you frequently use downcasting in class hierarchies.
I agree with that, but what are exceptions from this rule if any?<br>
This is where my design of graphical editor shows thin: I have two hierarchies, where geometric figures hierarchy decoupled from graphic primitives one. Like this:<br></p>
<pre><code>public class GeometricPrimitive {...}
public class RectangeGeometric: Geometric Primitive {...}
public class GraphicPrimitive {...}
public class Rectangle: GraphicPrimitive {
private RectangleGeometric figure;
...
}
</code></pre>
<p>So, every concrete graphic figure class encapsulates instance of concrete geometry class.<br> <strong>Is that approach is the right one, or should I prefer more generical one?</strong> - unfortunately, downcasting would be used in this case:</p>
<pre><code>public class GraphicPrimitive {
protected GeometryPrimitive figure;
....
}
public class Rectangle: GraohicPrimitive {
public Rectangle(Color c, TwoDPoint leftHighPoint, TwoDPoint rightLowPoint):
base(new RectangleGeometric(leftHighPoint.Point2D, rightLowPoint.Point2D), c) { }
#region Geometric Properties
public TwoDPoint LeftTopCorner {
get { return new TwoDPoint(base.color, (base.figure as RectangleGeometric).LeftTopCorner); }
}
public TwoDPoint RightBottomCorner {
get { return new TwoDPoint(base.color, (base.figure as RectangleGeometric).RightBottomCorner); }
}
</code></pre>
http://stackoverflow.com/questions/329776/a-good-book-to-understand-winapi-programming6A good book to understand WinAPI programming?chester892008-12-01T01:31:37Z2009-09-13T13:40:38Z
<p>I have a course at university where we are learning WinAPI programming. As I know C++ a bit, I must say that it is rather hard to deal with WinAPI - all these functions, structures, old-style casts, etc.</p>
<p>But at the same time, I think that a good book can make every difficult moment easy to learn.</p>
<p>My question actually consists of:</p>
<ol>
<li>What book would you advise me to read to understand WinAPI better? Except Jeffrey Richter`s 'Windows 2000 for Professional', of course:)</li>
<li>What language you consider the most suitable and convenient for WinAPI programming? Delphi or C++?</li>
</ol>
<p>Added: I forgot to say - MSDN not considered :)</p>
http://stackoverflow.com/questions/1393074/why-people-think-that-the-only-man-who-created-c-was-bjarne-stroustrup4Why people think that the only man who created C++ was Bjarne Stroustrup?chester892009-09-08T09:57:40Z2009-09-08T22:13:37Z
<p>I am currently reading Stroustrup's book "Design and Evolution of C++" and it turns out that he was not the one who developed C++.<br> When I hear someone saying "Bjarne Stroustrup developed C++ blah-blah-blah", I always feel it is very unfair to these guys who worked with BS - I mean Jonathan Shopiro, Andrew Koenig, Stan Lippman, Stefan Dewhurst and others. Why is it that way? Even <a href="http://en.wikipedia.org/wiki/C%2B%2B" rel="nofollow">wikipedia</a> does not mention his team - only him What it that about?<br>
<b>EDIT</b>:<br>
When people say C#, they did not mean Anders Hejlsberg ONLY, there were a development team working on both exactly C# and .NET Framework. May be it`s because C++ does not belong to any software-giant company, as Java to Sun or C# to MS?</p>
http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi1Can I overload operators for my own classes in Delphi?chester892008-11-30T21:01:25Z2009-09-06T15:33:37Z
<p>I faced a little trouble - I do not know if I can define my own operators for my classes.
For example:<br></p>
<pre><code>type
TMinMatrix = class(TMatrix)
private
RowAmount: Byte;
ColAmount: Byte;
Data: DataMatrix;
DemVector, SupVector: SupplyDemand;
public
constructor Create(Rows, Cols: Byte);
function GetRowAmount: Byte; override;
function GetColAmount: Byte; override;
destructor Destroy;
end;
</code></pre>
<p>How can I - or can`t I:) - do something like:</p>
<pre><code>TMinMatrix TMinMatrix::operator=(TMinMatrix* matr) (c++ code)
</code></pre>
<p>And, by the way, can I define copy constructor for my class?</p>
http://stackoverflow.com/questions/1369416/a-little-problem-with-bst-implementation1A little problem with BST implementationchester892009-09-02T18:35:20Z2009-09-02T19:13:25Z
<p>I`m writing STL-like container for binary-search tree. I have template class for Tree itself and nested class TreeNode.<br>
My question is where should I put the binary-predicate function which compairing keys - Into the tree class or into the Node class? If I decide to put it in a Tree class, all of my nodes would not know how to compare their keys:(<br>
And if in a Node class, should I make this function static or not?</p>
http://stackoverflow.com/questions/1363411/what-to-learn-first-c-stl-qt-or-net-c-if-i-have-limited-time-while-learni0What to learn first - C++/STL/QT or .NET/C# - if I have limited time while learning and working?chester892009-09-01T16:26:52Z2009-09-01T23:38:17Z
<p>I am currently a CS student at a 4th year(of total 5). I`m studying and working. At work I use ASP.NET. So, while working and studying, I have not so much time to learn new languages and techniques.<br>
<b>What do you suggest to learn first - C++/STL/QT or C#/LINQ/WPF?</b> I mean, C++ and its libraries are stable and do not change as fast as .NET technologies do. So, if I choose to learn C++ first, it might be that by the time I decide to finish my learning of it, .NET technologies are so far away that I can not actually catch them.<br>
And finally, at the end of June I received 6 books on WPF, WF, Astoria, EF and LINQ from Amazon. So, if C++ goes first, these books will become dated when I decide to switch on them.<br>
EDIT<br>
It seems to me that I will do .NET development for living and C++ for myself. But, nonetheless, I want to learn BOTH these directions.<br> <b>This is the tricky part - I am learning .NET/C# for almost a year, and C++ a little bit longer. So, the question is what is the best order to learn these things? </b></p>
http://stackoverflow.com/questions/38499/good-book-for-learning-the-c-standard-template-library/1363402#13634021Answer by chester89 for Good book for learning the C++ standard template library?chester892009-09-01T16:24:34Z2009-09-01T16:24:34Z<p>You may also consider this book: <a href="http://rads.stackoverflow.com/amzn/click/0201309564" rel="nofollow">Generic Programming and the STL: Using and Extending the C++ Standard Template Library</a><br>
I`ve found it very useful, deep covering many principles that STL uses. Also, it is not just a reference - it also has a tutorial part which I have found great.</p>
http://stackoverflow.com/questions/375962/is-it-possible-to-turn-off-unicode-support-in-rad-studio-20092Is it possible to turn off Unicode support in RAD Studio 2009?chester892008-12-17T20:46:21Z2009-08-29T15:40:30Z
<p>Hi guys, I have a little trouble with RAD Studio 2009.<br>
As you know, it is possible to switch Unicode support off in MSVS (right click on solution->properties->character set=not set). I need to find this feature in RAD Studio, I know it exists but do not know where exactly.<br>
It`s the only thing that stops my work on a Socket Chat university project.<br>
P.S. The problem appeared after I have installed the update from CodeGear official site.<br></p>
http://stackoverflow.com/questions/680878/what-does-autoeventwireup-page-property-mean3What does AutoEventWireUp page property mean?chester892009-03-25T09:42:13Z2009-08-25T17:19:47Z
<p>Hi guys, I am rather new to ASP.NET and I can not understand what AutoEventWireUp page property is responsible for.<br>
While serfing on the net, I have found a lot of forums discussions about that and they all seem discrepant to me.<br>
Can you please explain cleanly what this property means exactly?
I do not understand even this article <a href="http://support.microsoft.com/kb/324151" rel="nofollow">support.microsoft.com</a></p>
http://stackoverflow.com/questions/1324919/what-language-is-net-framework-written-in4What language is .NET Framework written in?chester892009-08-24T21:40:21Z2009-08-24T21:48:00Z
<p>The question I always wanted to ask and was afraid to, actually - <b>what language is .NET Framework written in?</b> I mean library itself.<br>
It seems to me that it was C and C++ mostly. (I hope Jon Skeet is reading this one, it`ll be very interesting to hear what he thinks about it)</p>
http://stackoverflow.com/questions/1293155/how-do-you-fight-growing-parameter-list-in-class-hierarchy2How do you fight growing parameter list in class hierarchy?chester892009-08-18T10:56:13Z2009-08-18T11:14:38Z
<p>I have a strong feeling that I do not know what pattern or particular language technique use in this situation.<br>
So, the question itself is how to manage the growing parameter list in class hierarchy in language that has OOP support? I mean if for root class in the hierarchy you have, let's say 3 or 4 parameters, then in it's derived class you need to call base constructor and pass additional parameters for derived part of the object, and so forth... Parameter lists become enormous even if you have depth of inheritance more than two. <br>
I`m pretty sure that many of SOwers faced this problem. And I am interested in ways how to solve it. Many thanks in advance.<br></p>
http://stackoverflow.com/questions/1253546/good-books-on-string-algorithms-if-any-do-i-need-a-separate-book-or-theme-is-wel2Good books on string algorithms if any. Do I need a separate book or theme is well explained in general algoritms?chester892009-08-10T07:32:51Z2009-08-10T15:59:44Z
<p>Do I need special book to learn about string algorithms, or it will be enough to pick up a chapter from general books (e.g."Introduction to Algorithms")?<br>
I prefer more code and less theory, and language doesn`t matter. It seems to me that many books on algorithms are outdated. Is it true?</p>
http://stackoverflow.com/questions/1253546/good-books-on-string-algorithms-if-any-do-i-need-a-separate-book-or-theme-is-wel/1255218#12552180Answer by chester89 for Good books on string algorithms if any. Do I need a separate book or theme is well explained in general algoritms?chester892009-08-10T14:28:20Z2009-08-10T14:28:20Z<p>Thanks everybody for suggestions, I decided to get a background in other algorithms before learning string ones.<br> Absence of algorithms and data structures course at university is really hit in the back for me:(</p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/1216452#12164520Answer by chester89 for What is the single most effective thing you did to improve your programming skills?chester892009-08-01T11:48:23Z2009-08-01T11:48:23Z<p>Started learning C++ a year ago</p>
http://stackoverflow.com/questions/1214762/structs-with-constraints/1214789#12147892Answer by chester89 for Structs With Constraintschester892009-07-31T20:42:33Z2009-07-31T20:42:33Z<p>I think you`d better suggest using a class in that situation. Put this struct into it, and in parameterless constructor you can explicitly set value you want your struct to contain.</p>
http://stackoverflow.com/questions/1207478/does-it-make-sense-to-implement-iterators-for-containers-which-has-no-obvious-end1Does it make sense to implement iterators for containers which has no obvious end - e.g. trees?chester892009-07-30T15:44:28Z2009-07-30T16:12:57Z
<p>I`m writing binary search tree template for two reasons - learning C++ and learning most common algorithms and data structures. <br>So, here is the question - as long as I want to implement iterators, it seems to me that there is no strict definition for where tree ends. What are your suggestions? How do I do this?</p>
http://stackoverflow.com/questions/1171279/can-i-use-dll-written-in-c-in-my-c-project2Can I use DLL written in C++ in my C# project?chester892009-07-23T12:00:29Z2009-07-23T13:11:37Z
<p>The problem is - I want to write a template class in C++, put it in a DLL, and then call it from my C# project. Is it possible? Can you please provide any references or articles on about how to do it?<br><br>
<strong>EDIT</strong><br>
I want DLL to be written in <b>unmanaged</b> C++</p>
http://stackoverflow.com/questions/1169977/which-c-book-should-i-read-after-finishing-accelerated-c/1170012#11700121Answer by chester89 for Which c++ book should I read after finishing 'accelerated c++' ?chester892009-07-23T06:39:36Z2009-07-23T06:39:36Z<p>You should definitely look at Bruce Eckel`s "Thinking in C++", both volumes<br>
<a href="http://rads.stackoverflow.com/amzn/click/0139798099" rel="nofollow">first volume</a><br>
<a href="http://rads.stackoverflow.com/amzn/click/0130353132" rel="nofollow">second one</a><br>
books are really-really useful and simply a joy to read</p>
http://stackoverflow.com/questions/484882/what-oop-design-decision-will-suit-the-situation-of-protocol-in-client-server-app0What OOP design decision will suit the situation of protocol in client/server app?chester892009-01-27T19:33:28Z2009-07-02T11:24:04Z
<p>I am writing a client/server app in C++ and need to realize simple protocol to sent and receive data correctly. I have a class for server protocol which can convert the message to my format and then convert it again from this format. <br>
That what is server-side protocol looks like:
class BaseProtocol {
protected:
int NumberOfBytesInPackOfText;
std::string serviceString;
public:
BaseProtocol(int SizeOfTextPack, const char* extraString):
NumberOfBytesInPackOfText(SizeOfTextPack),
serviceString(extraString) {}
virtual std::string& convertToSystemMessage(const char* message)=0;
virtual std::string& convertToNativeMessage(const char* message)=0;
virtual ~BaseProtocol() {
NumberOfBytesInPackOfText = 0;
serviceString = "";
}
};</p>
<p>class SimpleProtocol: public BaseProtocol {
public:
SimpleProtocol(int SizeOfTextPack, const char* service):
BaseProtocol(SizeOfTextPack, service) {}
std::string& convertToSystemMessage(const char* nativeMessage);
std::string& convertToNativeMessage(const char* systemMessage);
};</p>
<p>Now I can not decide what will be the better decision to make to implement that protocol on client application. A friend class to the server protocol? Or may be I need to extract subclass from server protocol and then the client protocol will be derived from this class?</p>
http://stackoverflow.com/questions/1789081/if-property-or-field-is-excluded-when-model-binding-what-value-will-it-have/1789112#1789112Comment by chester89 on If property or field is excluded when model-binding, what value will it have?chester892009-11-24T11:20:53Z2009-11-24T11:20:53Zand if it's initialized but excluded from model binding with Exclude?http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237394#237394Comment by chester89 on What coding mistakes are a telltale giveaway of an inexperienced programmer?chester892009-11-05T18:52:31Z2009-11-05T18:52:31ZI can`t divide hex number in my head:)http://stackoverflow.com/questions/1048000/books-to-refer-for-learning-oop-through-c/1048094#1048094Comment by chester89 on Books to refer for learning OOP through C++chester892009-10-22T18:38:33Z2009-10-22T18:38:33Zagreed, Thinking in C++ are great bookshttp://stackoverflow.com/questions/1606345/parsing-xml-in-c/1606384#1606384Comment by chester89 on Parsing XML in C#chester892009-10-22T11:54:42Z2009-10-22T11:54:42Z+1, linq to xml is a great tool for thishttp://stackoverflow.com/questions/1594841/which-language-to-use-for-implementing-few-linux-shell-commands-homework-plai/1594889#1594889Comment by chester89 on Which language to use for implementing few Linux shell commands (homework) - plain C or C++?chester892009-10-20T14:20:05Z2009-10-20T14:20:05Zwhat I meant is I don`t know it well enoigh to use even 10% of all its advantages. while learning C++ I did pointers operations, arrays, some low-level stuff. but I don`t think linux API is friendly, so I`d like to use C++ to wrap using OOP in the most convenient way possible http://stackoverflow.com/questions/1594841/which-language-to-use-for-implementing-few-linux-shell-commands-homework-plai/1594870#1594870Comment by chester89 on Which language to use for implementing few Linux shell commands (homework) - plain C or C++?chester892009-10-20T14:13:27Z2009-10-20T14:13:27Zwhy downvotes ensued? your suggestion is good, I thought about using Boost librarieshttp://stackoverflow.com/questions/1540452/how-to-restore-vs-project-template-for-test-if-i-deleted-it-by-mistake/1540481#1540481Comment by chester89 on How to restore VS project template for test if I deleted it by mistake?chester892009-10-08T21:11:03Z2009-10-08T21:11:03Zit didn`t help:(http://stackoverflow.com/questions/1540452/how-to-restore-vs-project-template-for-test-if-i-deleted-it-by-mistakeComment by chester89 on How to restore VS project template for test if I deleted it by mistake?chester892009-10-08T21:05:34Z2009-10-08T21:05:34Zwhen I delete something, I don`t delete to the recycle bin - I don`t know whether it`s good or badhttp://stackoverflow.com/questions/1485950/is-frequent-downcasting-in-class-hierarchy-always-evil/1507232#1507232Comment by chester89 on Is frequent downcasting in class hierarchy always evil?chester892009-10-06T18:04:04Z2009-10-06T18:04:04ZI followed your way, thankshttp://stackoverflow.com/questions/1521912/a-problem-with-castle-core-dllComment by chester89 on A problem with Castle.Core.dllchester892009-10-06T07:12:30Z2009-10-06T07:12:30Zthanks, I did it! now all that workshttp://stackoverflow.com/questions/1521912/a-problem-with-castle-core-dllComment by chester89 on A problem with Castle.Core.dllchester892009-10-05T21:00:51Z2009-10-05T21:00:51Zit worked, thanks! now I have problems with web.config http module section:(http://stackoverflow.com/questions/1521912/a-problem-with-castle-core-dllComment by chester89 on A problem with Castle.Core.dllchester892009-10-05T20:22:04Z2009-10-05T20:22:04ZI`ve got a little trouble - how to reference them now? I`ve installed assemblies in GAC, rebooted PC. But from the "Browse" tab I can`t add them to my project - they don`t show up in reference node in VS:(http://stackoverflow.com/questions/1521912/a-problem-with-castle-core-dll/1521933#1521933Comment by chester89 on A problem with Castle.Core.dllchester892009-10-05T19:32:56Z2009-10-05T19:32:56Zyes I do, all of 1.0.3.0
CastleWindsor 2.0 will be good?http://stackoverflow.com/questions/1418840/how-much-math-do-you-use-as-a-computer-scientistComment by chester89 on How much math do you use as a computer scientist?chester892009-09-14T22:21:08Z2009-09-14T22:21:08Zcan someone please tell me what do you mean by Calculus and its levels?http://stackoverflow.com/questions/1423786/simple-struct-question/1423808#1423808Comment by chester89 on Simple struct questionchester892009-09-14T21:04:31Z2009-09-14T21:04:31Zdon`t know about first case details, thanks for pointing it out