I am looking for something rather specific, and I don't really know what to call it. Let me explain: I require a small class/struct that takes a string and gathers information about it. So I pass my string into the constructor and it "frisks" the string, gathering how many characters the string has, how many letters are in it, how many numbers, how many lower case letters, how many uppercase letters, how long it is, etc. I was about to develop this myself, but was wondering I it already existed within the .NET framework.
Thanks.