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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

piped architecture in C# 1

Status
Not open for further replies.

ajikoe

Programmer
Apr 16, 2004
71
ID
anyone knows about the analogy of java.io.PipeReader in C#.
This kind of software architecture is beautiful.

Sincerely Yours,
Pujo Aji
 
My opinion is that feature is not in .NET unless using Win API but you can use the existing java.io.PipeReader in a C# program without problems. Here is an example how to call java in C# program:
1. Add vsjlib in the pPreoject->References selecting it from the .NET tab
2. Use ArrayList class from Java and not from .NET
Code:
private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
	java.util.ArrayList ar = new java.util.ArrayList();
        //...
}
-obislavu-
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top