element(by.<...>)
- id
- js
- css
- className
- name
[push] | |
default = current | |
[alias] | |
fetch = git fetch --tags | |
st = status | |
ci = commit | |
co = checkout | |
br = branch | |
rz = reset --hard HEAD | |
unwip = reset HEAD^ |
using System; | |
using System.Linq; | |
using System.Reflection; | |
namespace Print | |
{ | |
class Program | |
{ |
namespace Dump { | |
class Program { | |
static void Main(string[] args) | |
{ | |
Type mytype = (typeof(MyTypeClass)); | |
// Get the public methods - bind the return types public etc | |
MethodInfo[] myArrayMethodInfo = mytype.GetMethods(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly); | |
// Display the number of methods |