search
HomeBackend DevelopmentC#.Net TutorialDetailed introduction to the basic knowledge of C# in ASP.NET

This article mainly introduces the basic knowledge of C# in ASP.NET. It has a certain reference value, let’s take a look with the editor below

Explanation: asp.net as a developmentframework is now widely used, and its development foundation is in addition to the front-end The most important language support for backends such as html, css, JavaScript, etc. is C#. The following is a summary of the main basic knowledge used for future learning.

1. C# is an object-orientedprogramming language, mainly used to develop applications that can run on the .net platform. is a strongly typed language, so every variable must have a declared type. There are two data types in C#: value types and reference types. (Where value types are used to store values, reference types are used to store references to actual data).

1. Value type

The value type represents the actual data and is stored in the stack. Most basic types in C# are numeric types. Value types include simple types, enumeration types, and structure types.

Simple types include numerical types and bool types. (Generally, choose the numeric type according to your needs. When the value is small, you can try to choose the byte type).

2. Reference type

The reference type represents a pointer or reference to data and can store references to actual data. When the reference type is null, it means that no object is referenced. Reference types include interfaces, classes, arrays, pointers, etc. The classes include boxing types, delegates, and custom classes. (Note: Although string is an application type, if the equality operator == or != is used, it means comparing the value of the string object).

3. Boxing and unboxing

Simply put, boxing is the conversion from value type to reference type. Likewise, unboxing is a conversion from a reference type to a value type. Using unboxing, you can operate complex reference types just like simple types, which is also a powerful feature of C#.

Simple examples of boxing and unboxing

class Test
 {
 static void Mian()
 {
  int i = 3;
  object a = i;//装箱
  int j = (int)a;//拆箱
 }
 }

Explanation: During the process of boxing and unboxing, any value type can be viewed as an object reference type. When a boxing operation converts a value type to a reference type, there is no need to explicitly cast the type; while an unboxing operation converts a reference type to a value type, because it can force Convert to any compatible value type, so the type conversion must be done explicitly.

2. Constants and variables

1. Constants: also known as constants, are known at compile time and do not change during operation. Quantities and constants are declared as fields. When declaring, use the

const keyword in front of the type of the field. The constant must be initialized when declaring. Constants can be marked as public, private, protected, internal, protected internal. These access modifiers define how users can access the constant.

2. Variables: The naming rules of variables must comply with the naming rules of the logo, and

variable names should be as meaningful as possible for easy reading. Variables are quantities whose values ​​continuously change during the running of the program. They are usually used to save the data input during the running of the program, the intermediate results obtained by calculations, and the final results.

Variables must be declared before using them. Variables can save a value of a given type. When declaring a variable, you also need to specify its name. The form of declaring variables: [access modifier data type variable name].

Modifier access level:

public: Makes the member accessible from anywhere

protected: Makes the member accessible from the class in which it is declared and Internal access in its derived classes

private: Makes the member accessible only from within the class in which it is declared

internal: Makes the member accessible only from within the assembly in which it is declared

3. Type conversion

1. Implicit type conversion

Implicit type conversion means that it can be performed without declaration. conversion performed. When doing an implicit conversion, the compiler can

safely perform the conversion without checking.

                                      隐式类型转换表
源类型 目标类型
sbyte short, int long double decimal
byte short,ushort,int uint,ulong,float,double,decimal
short int ,long,float,double,decimal
ushort int ,uint,long ,ulong,float,double,decimal
int  long float,double,decimal
uint long ulong float double decimal
char ushort int unit long float double decimal 
float double
ulong  float double decimal
long  float double decimal

Note: Precision loss will occur when converting from int long ulong float simple type to float.

2. Explicit type conversion

Explicit type conversion can also be called forced type conversion, which requires Declare the type to be converted. If you are converting between types for which no implicit conversion exists, you need to use an explicit type conversion.

Forced type conversion can use the Convert keyword to force data type conversion.

For example: float f=123.345;

int i=(int)f;

Or: float f=123.345

int i=Convert. ToInt32(f);

Note: Since explicit type conversion includes all implicit type conversions and explicit type conversions, cast type conversion can always be used at one timeExpressionFrom Converts any numeric type to any other numeric type.

4. Operators and expressions

C# provides a large number of operators, which specify which operations are performed in expressions symbol. An expression is a piece of code that can be evaluated and results in a single value, object, method, or namespace.

1, Arithmetic operators and arithmetic expressions

Arithmetic operators include + - * / and %. (It’s too simple and I won’t go into details here);

2. Relational operators and relational expressions

Relational operators include: ! = == = etc. (all languages ​​are the same);

3, Assignment operator and assignment expression

The assignment operator is used to assign a new value to a variable,

attribute, event, or index element. Commonly used ones include: =, +=, -=, *=, /=, ^=, %=, >= (left shift assignment), etc.

4, Logical operators and logical expressions

Logical operators include: & (AND operator) , ^ (XOR operator), ! (not operator), | (OR operator), use logical operators to connect the operands.

5, bit operator

The bit operator refers to treating its operand as a binary set , each binary bit can take the value 0 or 1. >Move right.

6. Other operators

Increment and decrement operators: ++, --, a--, a++.

Conditional operator:? : Returns one of two values ​​based on the value of a Boolean expression. For example: int a=1; int b=2; a!=b?a++:a--; (If a!=b, this instance returns an execution result of 2, otherwise it is 1).

new operator: used to create objects and call constructors. For example: int i=new int(); is equivalent to int i=0;

as operator: used to perform conversions between compatible reference types. For example: string s =someObject as string; The as operator is similar to a cast. When the conversion fails, the operator produces a null value instead of raising a null value.

7. Priority of operators

Basic>>Singular>>Multiplication and division>>Addition and subtraction> ;> Shift >> Compare > Conditions>>Assignment

5. String processing

##1. Compare stringsString class provides a series of methods for string comparison, such as CompareTo and Equals.

The CompareTo method is used to compare whether two strings are equal. Format: String.CompareTo(String); Return numeric type

The Equals method is used to determine whether two string objects have the same value. Format: String.Equals(String); Returns Boolean type

2, positioning and its string Someone in the positioning string Use the IndexOf method at the position where the character or Zichuan first appears. Format: String.IndexOf(String); the parameters represent the string to be located. (Pay attention to capitalization).

3, Format string

.Net提供了一种灵活全面的方式,能够将任何数值、枚举、日期时间等基本数据类型表示为字符串。格式化由格式说明符的字符串表示,该字符串指示如何表示基类型。

格式为:String Format(String,Object);例如:

//格式化为Currency类型
string str1=String.Format("(C)Currency:{0:C}\n",-123.4556f);
//格式化为ShortDate类型
string str2=String.Format("(d)ShortDate:{0:d}\n",DateTime.Now);

4、截取字符串

SubString方法可以从指定字符串中截取子串。格式:String.SubString(Int32,Int32);  第一个参数表示子串的起始位置,第二个参数表示子串的结束位置。

5、分裂字符串

Split()方法可以把一个字符串按照某个分隔符分裂成一系列小的字符串。格式:String []Split(char[]);参数为分割字符串的数组。

string str="hello world";
string[] split=str.Split(new Char[]{'.','!'});
foreach(string s in split)
{
 if(s.Tirm()!='''')
 {
 Console.WriteLine(s);
 }
//或者修改为
 string []split=str.Split(','.'!');

6、插入和填充字符串

插入字符串:Insert()方法,用于在一个字符串的指定位置插入另外一个字符串,从而构造一个新的字符串。格式:String.Insert(int,String);第一个参数为指定插入的位置。

填充字符串:PadLeft()方法和PadRight()方法添加指定数量的空格实现左右对齐。格式:String PadLeft(int,char)。String PadRight(int Char);

7、删除和剪切字符串

删除字符串:Remove()方法用于在一个字符串的指定位置删除指定的字符。格式:String Remove(int ,int);第一个参数表示删除的位置,第二个参数表示删除字符的数量。

剪切字符串:常用的剪切首位的多余字符用到的方法有: Trim(),TrimStart(),TrimEnd();格式如下:

String Trim(Char[]);//从字符串的开头和结尾处一处空白。
String TrimStart(Char[]);//从字符串的开头处移除字符串在字符数组中指定的字符。
String TrimEnd(Char[]);//从字符串的结尾处移除字符数组中指定的字符。

8、复制字符串

Copy()方法可以把一个字符串复制到另一个字符串中。格式:String Copy(String);//参数为需要复制的字符串,方法返回目标字符串。

9、替换字符串

Replace()方法可以替换掉一个字符串中的某些特定的字符或者子串。格式:String Replace(string ,string );第一个参数为待替换子串,第二工人参数为替换后的新子串。

六、流程控制

1、分支语句

1>if... else语句

if(布尔表达式)

{  代码片段1}

else{  代码片段2}

2>switch语句

switch(条件)

{   case 条件1:

     break;

   '''''

}

2、循环语句

for()循环

while()语句

do while语句

foreach语句

3、异常处理语句

try.....catch语句

try.....finally语句,finally块用于清除try块中分配的任何资源,以及运行任何即使在发生异常时也必须执行的代码。控制总是传递给finally块,与try块的退出方式无关。

try...catch..finally语句

throw语句,用于立即无条件地引发异常,控制永远不会到达紧跟在throw后面的语句。

七、数组

数组是从System.Array派生的引用类型。

1、数组的声明:

一般语法:type[]arrayName;type[,]arrayName;

2、初始化数据(数组初始化的方式很多,可以通过new运算符创建数组元素初始化为它们的默认值)

//举例
int []arr=new int[6];
int [,]arr=new int[2,3];
int []arr1=new int[3]{1,2,3};
int [,]arr2=new int[3,2]{{2,3},{5,5},{3,5}};
string []arr;
arr=new string[3]{"sd","dddd","aaaa"};
int [,]arr;
arr=new int[,]{{2,3},{4,5},{4,2}};
//创建数组时可以省略new和数组长度
string[]arr={"ddd","fff","sss"};
int [,]arr3={{2,3},{4,5},{3,2}};

3、数组的遍历

C#用foreach语句进行遍历数组,是一种简单的明了的方法来循环访问数组中的元素。

int []arr={2,3,6,3,2};
foreach(int i in arr){
 system.Console.write({0},i);
}

掌握以上的基本知识简单的asp.net开发后台部分就成功了一部分,学无止境。

The above is the detailed content of Detailed introduction to the basic knowledge of C# in ASP.NET. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何使用C#编写时间序列预测算法如何使用C#编写时间序列预测算法Sep 19, 2023 pm 02:33 PM

如何使用C#编写时间序列预测算法时间序列预测是一种通过分析过去的数据来预测未来数据趋势的方法。它在很多领域,如金融、销售和天气预报中有广泛的应用。在本文中,我们将介绍如何使用C#编写时间序列预测算法,并附上具体的代码示例。数据准备在进行时间序列预测之前,首先需要准备好数据。一般来说,时间序列数据应该具有足够的长度,并且是按照时间顺序排列的。你可以从数据库或者

如何使用Redis和C#开发分布式事务功能如何使用Redis和C#开发分布式事务功能Sep 21, 2023 pm 02:55 PM

如何使用Redis和C#开发分布式事务功能引言分布式系统的开发中,事务处理是一项非常重要的功能。事务处理能够保证在分布式系统中的一系列操作要么全部成功,要么全部回滚。Redis是一种高性能的键值存储数据库,而C#是一种广泛应用于开发分布式系统的编程语言。本文将介绍如何使用Redis和C#来实现分布式事务功能,并提供具体代码示例。I.Redis事务Redis

如何实现C#中的人脸识别算法如何实现C#中的人脸识别算法Sep 19, 2023 am 08:57 AM

如何实现C#中的人脸识别算法人脸识别算法是计算机视觉领域中的一个重要研究方向,它可以用于识别和验证人脸,广泛应用于安全监控、人脸支付、人脸解锁等领域。在本文中,我们将介绍如何使用C#来实现人脸识别算法,并提供具体的代码示例。实现人脸识别算法的第一步是获取图像数据。在C#中,我们可以使用EmguCV库(OpenCV的C#封装)来处理图像。首先,我们需要在项目

Redis在C#开发中的应用:如何实现高效的缓存更新Redis在C#开发中的应用:如何实现高效的缓存更新Jul 30, 2023 am 09:46 AM

Redis在C#开发中的应用:如何实现高效的缓存更新引言:在Web开发中,缓存是提高系统性能的常用手段之一。而Redis作为一款高性能的Key-Value存储系统,能够提供快速的缓存操作,为我们的应用带来了不少便利。本文将介绍如何在C#开发中使用Redis,实现高效的缓存更新。Redis的安装与配置在开始之前,我们需要先安装Redis并进行相应的配置。你可以

如何使用C#编写动态规划算法如何使用C#编写动态规划算法Sep 20, 2023 pm 04:03 PM

如何使用C#编写动态规划算法摘要:动态规划是求解最优化问题的一种常用算法,适用于多种场景。本文将介绍如何使用C#编写动态规划算法,并提供具体的代码示例。一、什么是动态规划算法动态规划(DynamicProgramming,简称DP)是一种用来求解具有重叠子问题和最优子结构性质的问题的算法思想。动态规划将问题分解成若干个子问题来求解,通过记录每个子问题的解,

C#开发中如何处理跨域请求和安全性问题C#开发中如何处理跨域请求和安全性问题Oct 08, 2023 pm 09:21 PM

C#开发中如何处理跨域请求和安全性问题在现代的网络应用开发中,跨域请求和安全性问题是开发人员经常面临的挑战。为了提供更好的用户体验和功能,应用程序经常需要与其他域或服务器进行交互。然而,浏览器的同源策略导致了这些跨域请求被阻止,因此需要采取一些措施来处理跨域请求。同时,为了保证数据的安全性,开发人员还需要考虑一些安全性问题。本文将探讨C#开发中如何处理跨域请

如何实现C#中的图像压缩算法如何实现C#中的图像压缩算法Sep 19, 2023 pm 02:12 PM

如何实现C#中的图像压缩算法摘要:图像压缩是图像处理领域中的一个重要研究方向,本文将介绍在C#中实现图像压缩的算法,并给出相应的代码示例。引言:随着数字图像的广泛应用,图像压缩成为了图像处理中的重要环节。压缩能够减小存储空间和传输带宽,并能提高图像处理的效率。在C#语言中,我们可以通过使用各种图像压缩算法来实现对图像的压缩。本文将介绍两种常见的图像压缩算法:

如何实现C#中的遗传算法如何实现C#中的遗传算法Sep 19, 2023 pm 01:07 PM

如何在C#中实现遗传算法引言:遗传算法是一种模拟自然选择和基因遗传机制的优化算法,其主要思想是通过模拟生物进化的过程来搜索最优解。在计算机科学领域,遗传算法被广泛应用于优化问题的解决,例如机器学习、参数优化、组合优化等。本文将介绍如何在C#中实现遗传算法,并提供具体的代码示例。一、遗传算法的基本原理遗传算法通过使用编码表示解空间中的候选解,并利用选择、交叉和

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor