Click here to Skip to main content
Page 1 of 2
Page Size: 10 · 25 · 50


Author filtered by: forester joe [x]
Tip/Trick 12 May 2013   license: CPOL
A basic yet generic state machine implementation
Mocking Event Handlers by forester joe
Tip/Trick 11 May 2013   license: CPOL
A solution for monitoring Events called during test
Re: Not an article by forester joe
Forum Message 11 May 2013  
OK I Guess
Re: Not an article. by forester joe
Forum Message 11 May 2013  
OK will move to tip.
Re: Hmmmm.... by forester joe
Forum Message 11 May 2013  
I guess I wasn't clear enough on this point. I will explain better. but first I want to say that you are right, and that I was trying to say just that. one the one hand we definitely want to test th
My vote of 5 by forester joe
Forum Message 11 Apr 2013  
Classic into to new Technology. the project wizard walkthrough, the hello world with a little extra.
Answer 10 Mar 2013   license: CPOL
attributes are like properties of the Type or the member. and are not data in an instance.suppose I have the following classes:public class UserData1{ public string Text { get; set;} public string Name { get; set;} public string Address { get; set;}}public class...
C#
Answer 10 Mar 2013   license: CPOL
serialization is the process of translating an object that is represented in memory, into a "flat" format that can be stored, usually in a text format, or a byte array.the serialization needs to be two way- to allow a reader to recreate the object from the flat format.for...
C#
Contact Detection Algorithm by forester joe
Answer 5 Mar 2013   license: CPOL
I think the best solution combines both comments above, and should look something like this:if( ! Ball1.IntersectsWith(Ball2)){ return false;}double Ball1CenterX = (Ball1.Right - Ball1.Width)/2;double Ball2CenterX = (Ball2.Right - Ball2.Width)/2;double Ball1CenterY =...
custom event - button.click by forester joe
Answer 4 Mar 2013   license: CPOL
I don't understand what the problem or the requested result are.it looks like you want to have something like this:public class MyForm : Form{ Button button1; Button button2; public void init() { //register method to handle event button1.Click +=...
C#

Page 1 of 2
1 2


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid