C# Assignment Help l Project in C# l Homework

Hi, we offer solutions for your C# homework and will guarantee that you have a solution that satisfies you.

Microsoft’s answer to Java which initially was for Windows only, but is also supported on Linux via Mono. In my opinion it is a lot better than Java as it offers advanced programming techniques such as overloaded operators.

This is one sample of the type of help with C# homework we can offer, but if you need something specific let us know and we can deliver.

C#

Problem:

  1. Write an application that includes two additional methods in addition to the Main( ) method. One method should return a string consisting of four or five lines of information about your school. The other method should return a string consisting of asterisks. First call the method that returns the
    string of asterisks. Call the method that returns the asterisk a second time after you invoke the method that displays the information about your school. Items you might include are the name of your school, number of students enrolled, and school colors. Include appropriate labels. The display should be aesthetically pleasing so include enough asterisks to surround your listing.
  2. Write a program that calculates and prints the take-home pay for a commissioned sales employee. Allow the user to enter values for the name of the employee and the sales amount for the week. Employees receive 7% of the total sales. Federal tax rate is 18%. Retirement contribution is 15%.
    Social Security tax rate is 9%. Use appropriate constants. Write input, display, and calculation methods. Your final output should display all calculated values, including the total deductions and all defined constants.

C# programming language is object oriented language. Help with C# programming assignment by our online C# tutors are of great value. We use current updated information with highest quality work and timely delivery of assignment.

This is the most popular and important programming language in the whole world.  Students who need complete guidance on their C# programming assignment can come to our online expert with C# programming language.

Help with C# programming assignment has always been easy with C# expert from our website. You can easily write to us or upload your assignment at our website. You can get good grade after getting help from our tutors.

Q1.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SchoolInfo
{
    class Q1
    {
        // return a string consisting of four or five lines of school infromation
        static string GetSchoolInformation()
        {
            string school = "Estrella Mtn. Community College";
            string motto = "Your Success is Our Success";
            string colors = "Purple and Black";
            string mascot = "Mountain Lion";

            string information = "*  College Name:  " + school + " *\n" +
                                 "*  Motto:         " + motto  + "     *\n" +
                                 "*  School Colors: " + colors + "                *\n" +
                                 "*  School Mascot: " + mascot + "                   *";

            return information;
        }

        // return a string of asterisks
        static string GetAsterisks()
        {
            string line = "";
            for (int i = 0; i < 51; i++)
            {
                line += "*";
            }
            return line;
        }

        static void Main(string[] args)
        {
            Console.WriteLine(GetAsterisks());
            Console.WriteLine(GetSchoolInformation());
            Console.WriteLine(GetAsterisks());
            Console.ReadLine();
        }
    }
 }

Students who need guidance and require support from our online C# programming expert can get easily help from them.

With C# programming language you can easily map UML diagrams and for the online help with UML in C# language can reach us for it.

Q2.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Payment
{
    class Q2
    {
        // constant for calculating payment
        const double GROSS_RATE = 0.07;
        const double FEDERAL_RATE = 0.18;
        const double RETIRE_RATE = 0.15;
        const double SOCIAL_RATE = 0.09;

        static void Main(string[] args)
        {
            // calculate and print the take-home pay for a sales employee
            Console.Write("Enter name: ");
            string name = Console.ReadLine();

            Console.Write("Enter sales amount for the week: ");
            string line = Console.ReadLine();
            // convert the string line into an amount assuming it is a legal number
            double amount = double.Parse(line);

            // now calculate gross pay
            double gross = amount * GROSS_RATE;
            // calculate taxe and contribution
            double federal_tax = gross * FEDERAL_RATE;
            double retire_con = gross * RETIRE_RATE;
            double social_tax = gross * SOCIAL_RATE;

            // cacluate the final net pay
            double deductions = federal_tax + retire_con + social_tax;
            double netpay = gross - deductions;

            // display the result
            Console.WriteLine();
            Console.WriteLine("Employee: " + name);
            Console.WriteLine("Sales:    " + amount);
            Console.WriteLine("{0}% of amount results in gross pay: {1}", GROSS_RATE * 100, gross);
            Console.WriteLine("{0}% of gross pay is federal tax: {1}", FEDERAL_RATE * 100, federal_tax);
            Console.WriteLine("{0}% of gross pay is retirement contribution: {1}", RETIRE_RATE * 100, retire_con);
            Console.WriteLine("{0}% of gross pay is social security tax: {1}", SOCIAL_RATE * 100, social_tax);
            Console.WriteLine("Thus,");
            Console.WriteLine("Total deductions: " + deductions);
            Console.WriteLine("Final net pay: " + netpay);
            Console.ReadLine();
        }
    }
}

The samples we’ve shown are just a selection of C# code, so contact us if you are looking for help.

Our online experts with C# language are available all the time for assistance. Once the payment is made, it is our expert responsibility to work on the requirement and complete it within the deadline. The help with C# programming assignment is of good quality and is well commented. The C# programming homework help provided by our expert are plagiarism. You can get high quality solution from our online expert with C# language.

Our online C# programming experts are degree holders. We have pool of experts on it. They are very talented and always student friendly. They are always there for C# programming assignment help.

Your privacy is guaranteed and we never share your information with anyone.  This help to gain confidence among students who come to us and remain entitled to our website. They have thus become our repeated customers.

Your assignment our commitment always pays. We follow a policy where we ensure programming solution should pass our quality test and then delivered it to our students. We believe in simplicity with high quality solution delivered.

We always take it as a priority to provide you good C# programming assignment help. Our online C# programming experts focus mainly on the requirement so that C# assignment solution is of great value.

Our C# programming assignment help comes with good guidance from our expert and hence you can easily trust us for your C# programming assignment. C# project often are complex when it involves system related programming. Student can easily come to us for help with C# programming assignment. Once the payment is made you can get solution within your deadline. This helps you to better understand the programming philosophy techniques.