本文整理汇总了C#中Modifiers.SetStatic方法的典型用法代码示例。如果您正苦于以下问题:C# Modifiers.SetStatic方法的具体用法?C# Modifiers.SetStatic怎么用?C# Modifiers.SetStatic使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Modifiers
的用法示例。
在下文中一共展示了Modifiers.SetStatic方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MethodDecl
// For overloaded operators
// No modifiers needed since op overloading must be public & static.
// Have a special constructor so that we can set the IsOp flag and
// get a safe string name.
public MethodDecl(
BinaryExp.BinaryOp op,
TypeSig tRetType,
ParamVarDecl[] arParams,
BlockStatement stmtBody
)
{
m_fIsOpOverload = true;
string strName = GetOpOverloadedName(op);
m_idName = new Identifier(strName, tRetType.Location);
m_tRetType = tRetType;
m_arParams = (arParams != null) ? arParams : new ParamVarDecl[0];
m_stmtBody = stmtBody;
//m_mods = new Modifiers(Modifiers.EFlags.Public | Modifiers.EFlags.Static);
m_mods = new Modifiers();
m_mods.SetPublic();
m_mods.SetStatic();
Debug.Assert(m_idName != null);
Debug.Assert(m_stmtBody != null);
Debug.Assert(m_arParams != null);
}