CLRSharp.Type_Common_System.GetFieldNames C# (CSharp) Method

GetFieldNames() public method

public GetFieldNames ( ) : string[]
return string[]
        public string[] GetFieldNames()
        {
            var fs = TypeForSystem.GetFields();
            string[] names = new string[fs.Length];
            for (int i = 0; i < fs.Length; i++)
            {
                names[i] = fs[i].Name;
            }
            return names;
        }