本文介绍了是什么| (管)在C#是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

只是想知道什么是管这个意思吗?香港专业教育学院从未见过的:

Just wondering what the pipe means in this? ive never seen it before:

FileSystemAccessRule fullPermissions = new FileSystemAccessRule(
             "Network Service",
             FileSystemRights.FullControl | FileSystemRights.Modify,
             AccessControlType.Allow);

干杯

推荐答案

它通常是一个的。在这种情况下,它的使用与href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\">标志属性设置

It is normally a bitwise or operator. In this context, it's used on an enum with the flags attribute set.

这篇关于是什么| (管)在C#是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 14:33