C# MethodInfo IsStatic
Description
MethodInfo IsStatic
Gets a value indicating whether
the method is static.
Syntax
MethodInfo.IsStatic
has the following syntax.
public bool IsStatic { get; }
Example
using System;//from w ww .j a v a2 s .com
using System.IO;
using System.Reflection;
using System.Text;
public class Sample
{
public static void Main()
{
Type aType = "".GetType();
MethodInfo[] mInfo = aType.GetMethods();
if (mInfo.Length != 0)
{
for (int i = 0; i < mInfo.Length; i++)
{
if (mInfo[i].DeclaringType == aType && !mInfo[i].IsSpecialName)
{
StringBuilder modifiers = new StringBuilder();
if (mInfo[i].IsStatic) { modifiers.Append("static "); }
if (mInfo[i].IsPublic) { modifiers.Append("public "); }
if (mInfo[i].IsFamily) { modifiers.Append("protected "); }
if (mInfo[i].IsAssembly) { modifiers.Append("internal "); }
if (mInfo[i].IsPrivate) { modifiers.Append("private "); }
Console.WriteLine(modifiers);
}
}
}
}
}
The code above generates the following result.