Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aperion

    Convert object type to byte[]?

    It seems like you want to convert from object[] to byte[]. I don't know a direct conversion but you could try one of the following 2 workarounds: 1. Copy and convert each array member: object[] o = new object[1]; byte[] b = new byte[o.Length]; for (int i = 0; i < o.Length; i++) b[i] =...
  2. aperion

    Forwarding Member Properties, Emulating multiple inheritance

    Dear C# wizzards out there ... I want to achieve a maximum of programming/usage comfort and still keep changes locally. Therfore I would like my class to copy the interface of a member object and forward all Property calls to the respective object. Instead of: class MyClass {...
  3. aperion

    Using Variable (Dynamic) Class Name

    You might want to check out the GruikSoft.ComponentModel which offers a DerivedClassesTypeConverter. I've used it a lot lately and am quite happy with it. http://stup.org/blogs/nidhogg/posts/277.aspx

Part and Inventory Search

Back
Top