Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please type your username.

Please type your E-Mail.

Please choose an appropriate title for the post.

Please choose the appropriate section so your post can be easily searched.

Please choose suitable Keywords Ex: post, video.

Browse

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • About Us
  • Contact Us
Home/ Questions/Q 3994

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Latest Questions

Author
  • 61k
Author
Asked: November 26, 20242024-11-26T07:52:06+00:00 2024-11-26T07:52:06+00:00

C# Basic: From a javascript developer perspective

  • 61k

As a Junior developer, i've always been scared of learning 'Old' programming language that primarily uses OOP paradigm. However, today I decided to suck it up and at least try it. It isn't as bad as I think, there's similarities that it carries over to Javascript. Let us go through the basics first.

This blog assumes understanding of javascript


The Basic

Data Types

Unlike javascript which is dynamically typed language, C# is statically typed language: The data type of a variable is known at the compile time which means the programmer has to specify the data type of a variable at the time of its declaration.

int: number (32bit) decimal: number (128bit) string: string bool: Boolean list[]: Array dictionary{}: Object 
Enter fullscreen mode Exit fullscreen mode

-------------- Declaration ---------------- int myInt = 2147483647; decimal myDecimal = 0.751m; // The m indicates it is a decimal string myString = "Hello World"; // Notice the double-quotes bool myBool = true; 
Enter fullscreen mode Exit fullscreen mode

List/Array

Note: You cannot add or extend the length if you use method 1 & 2
Declaring & assigning List method 1

string[] myGroceryArray = new string[2]; // 2 is the length myGroceryArray[0] = "Guacamole"; 
Enter fullscreen mode Exit fullscreen mode

Declaring & assigning List method 2

string[] mySecondGroceryArray = { "Apples", "Eggs" }; 
Enter fullscreen mode Exit fullscreen mode

Declaring & assigning List method 3

List<string> myGroceryList = new List<string>() { "Milk", "Cheese" }; Console.WriteLine(myGroceryList[0]); //"Milk" myGroceryList.Add("Oranges"); //Push new item to array 
Enter fullscreen mode Exit fullscreen mode

Declaring & assigning Multi-dimensional List

The number of ',' will determine the dimensions

string[,] myTwoDimensionalArray = new string[,] {     { "Apples", "Eggs" },     { "Milk", "Cheese" } }; 
Enter fullscreen mode Exit fullscreen mode

IEnumerable/Array

An array that is specifically used to enumerate or loop through.

You may ask, “What's the difference with list?”. The answer is:

One important difference between IEnumerable and List (besides one being an interface and the other being a concrete class) is that IEnumerable is read-only and List is not.

List<string> myGroceryList = new List<string>() { "Milk", "Cheese" };  IEnumerable<string> myGroceryIEnumerable =  myGroceryList; 
Enter fullscreen mode Exit fullscreen mode

Dictionary/Object

Dictionary<string, string[]> myGroceryDictionary = new Dictionary<string, string[]>(){     {"Dairy", new string[]{"Cheese", "Milk", "Eggs"}} };  Console.WriteLine(myGroceryDictionary["Dairy"][2]); 
Enter fullscreen mode Exit fullscreen mode

Operators

Operators in C# behaves very similar to javascript so I won't describe it here

Conditionals

//Logic gate   //There's no === in C# myInt == mySecondInt  myInt != mySecondInt   myInt >= mySecondInt myInt > mySecondInt myInt <= mySecondInt  myInt < mySecondInt   // If Else if () {} else if () {} else () {}  // Switch switch (number) {     case 1:         Console.WriteLine("lala");         break;     default:         Console.WriteLine("default");         break; } 
Enter fullscreen mode Exit fullscreen mode

Loops

🌟 Using foreach will be much faster than regular for loop

int[] intArr = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };  int totalValue = 0;  for (int i = 0; i < intArr.Length; i++) {     totalValue += intArr[i]; }  int forEachValue = 0;  foreach (int num in intArr) {     forEachValue += num; } 
Enter fullscreen mode Exit fullscreen mode

Method

C# is first and foremost an OOP oriented language.

namespace HelloWorld {     internal class Program     {         static void Main()         {             int[] numArr = [1, 2, 3, 4, 5];             int totalSum = GetSum(numArr);         }          static private int GetSum(int[] numArr)         {             int totalValue = 0;             foreach (var item in numArr)             {                 totalValue += item;             }             return totalValue;         }     } } 
Enter fullscreen mode Exit fullscreen mode

Declaring Namespace & Model

Namespace is used to organization purpose, typically to organize classes

namespace HelloWorld.Models {     public class Computer     {         public string Motherboard { get; set; } = "";         public int CPUCores { get; set; }         public bool HasWIfi { get; set; }         public bool HasLTE { get; set; }         public DateTime ReleaseDate { get; set; }         public decimal Price { get; set; }         public string VideoCard { get; set; } = "";     }; } 
Enter fullscreen mode Exit fullscreen mode

Starting C# 10, we can also declare namespace as such

namespace SampleNamespace;  class AnotherSampleClass {     public void AnotherSampleMethod()     {         System.Console.WriteLine(             "SampleMethod inside SampleNamespace");     } } 
Enter fullscreen mode Exit fullscreen mode

Importing Namespace

using HelloWorld.Models; 
Enter fullscreen mode Exit fullscreen mode

beginnerscsharpjavascriptwebdev
  • 0 0 Answers
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 4k
  • Answers 0
  • Best Answers 0
  • Users 2k
  • Popular
  • Answers
  • Author

    ES6 - A beginners guide - Template Literals

    • 0 Answers
  • Author

    Understanding Higher Order Functions in JavaScript.

    • 0 Answers
  • Author

    Build a custom video chat app with Daily and Vue.js

    • 0 Answers

Top Members

Samantha Carter

Samantha Carter

  • 0 Questions
  • 20 Points
Begginer
Ella Lewis

Ella Lewis

  • 0 Questions
  • 20 Points
Begginer
Isaac Anderson

Isaac Anderson

  • 0 Questions
  • 20 Points
Begginer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore, ask, and connect. Join our vibrant Q&A community today!

About Us

  • About Us
  • Contact Us
  • All Users

Legal Stuff

  • Terms of Use
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2022 Querify Question. All Rights Reserved

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.