CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: boazevental

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,766

    Re: Symmetric difference and useful in c#

    found it :)
  2. Replies
    2
    Views
    1,766

    Symmetric difference and useful in c#

    I learned about symmetric difference (in math ) and I would like to know what can i do with it in programming what are the uses for mathematical Knowledge like Symmetric difference
    i will like for...
  3. Re: need an Opinion about how to start this project i`m practicing..

    any 1 for reviewing?
  4. need an Opinion about how to start this project i`m practicing..

    ok, so i have this project ' i need to print Salary of Employees ,production employees , quality control employees , sales employees ,and director employes in every Department
    production employees:...
  5. problematic Main need help to understand how to use the main

    some one told me that my main is too long and i need to break it to methods
    is it true? and if it is so How would you break up the Main?
    this is the code:


    class Program
    {
    static...
  6. Replies
    2
    Views
    3,047

    problem to understand " new virtual "

    to explain i will write a little code:

    class A {
    public virtual void f() { print "1"; }
    }

    class B : A {
    public override void f() { print "2"; }
    }
  7. looking for exercises to practice interfaces on c#

    i`m new at c# and i have learned about the interfaces subject so i am looking for a little project that i can do , that i will need to use interface , so i will understand this subject better
    if...
  8. Replies
    5
    Views
    3,388

    Re: VS2012 into VISIO 2013

    vs2012 first :)
  9. Logic error in my program , object print the same values..

    this is my Program Class:

    class Program
    {
    static void Main(string[] args)
    {
    Rectangle[] field = new Rectangle[2];
    for (int i = 0; i <...
  10. Replies
    5
    Views
    3,388

    Re: VS2012 into VISIO 2013

    no , i have ultimate
  11. Replies
    5
    Views
    3,388

    VS2012 into VISIO 2013

    i have VS2012 and i want to generate the project into visio file, in youtube i`v seen video that shows an option to do that, option to generate visio file , but this option has goon from VS2012,...
  12. Replies
    3
    Views
    903

    Re: need help to find special application

    friend told me about visio now , and i want to know the program that usely programmers using
  13. Replies
    3
    Views
    903

    need help to find special application

    i`m program in c# and i`m looking for application that i can plan the project , because for now i write the all project on papers so i thought maybe some one know program that
    designate to write...
  14. want a code review about my class that i made, i am new at c#

    this is ma Date class, it need to get date and to check if it ok and it can print in diffrences formats


    namespace PhoneBook
    {
    class Date
    {
    private int day;
    private...
  15. Replies
    2
    Views
    4,028

    Re: struct in memory explanation

    what happend in the memory when i write :

    CarType car = new CarType();
    so i understand that in the stack after that i have 5 copyes of the struct variables ?
    and they are connected to the...
  16. Replies
    2
    Views
    4,028

    struct in memory explanation

    i read about the struct variables in the memory and i didnt understand
    when i calls to struct that i made for example :

    public struct CarType
    {
    private string Color;
    ...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured