访问说明符

扫码查看
本文介绍了访问说明符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HI,

将变量声明为
是什么意思
private int a = 10;
受保护的字符串message =";
public int b = 10;

在c#.net .aspx页的类级别.(服务器端)



What is the meaning when we declare variables as

private int a=10;
protected string message="";
public int b=10;

at class level in c#.net .aspx page.(server side)

推荐答案



这篇关于访问说明符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-27 19:59
查看更多