Click here to Skip to main content
15,910,603 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# Forms to Services Pin
Nicholas Marty24-Jul-13 0:51
professionalNicholas Marty24-Jul-13 0:51 
QuestionPopulating generate wizard Pin
velkumar_in23-Jul-13 19:17
velkumar_in23-Jul-13 19:17 
AnswerRe: Populating generate wizard Pin
Code-Hunt23-Jul-13 20:49
Code-Hunt23-Jul-13 20:49 
QuestionGrid View Column Pin
Mahdi_kishislan23-Jul-13 10:40
Mahdi_kishislan23-Jul-13 10:40 
AnswerRe: Grid View Column Pin
Dave Kreskowiak23-Jul-13 11:22
mveDave Kreskowiak23-Jul-13 11:22 
GeneralRe: Grid View Column Pin
Mahdi_kishislan23-Jul-13 18:49
Mahdi_kishislan23-Jul-13 18:49 
GeneralRe: Grid View Column Pin
Dave Kreskowiak24-Jul-13 3:49
mveDave Kreskowiak24-Jul-13 3:49 
AnswerRe: Grid View Column Pin
phani raavi25-Jul-13 3:25
phani raavi25-Jul-13 3:25 
QuestionFPS convertor Pin
_Q12_23-Jul-13 9:13
_Q12_23-Jul-13 9:13 
AnswerRe: FPS convertor Pin
walterhevedeich23-Jul-13 17:37
professionalwalterhevedeich23-Jul-13 17:37 
GeneralRe: FPS convertor Pin
_Q12_23-Jul-13 18:51
_Q12_23-Jul-13 18:51 
GeneralRe: FPS convertor Pin
walterhevedeich23-Jul-13 20:23
professionalwalterhevedeich23-Jul-13 20:23 
GeneralRe: FPS convertor Pin
harold aptroot24-Jul-13 0:13
harold aptroot24-Jul-13 0:13 
GeneralRe: FPS convertor Pin
_Q12_25-Jul-13 6:27
_Q12_25-Jul-13 6:27 
GeneralRe: FPS convertor Pin
harold aptroot25-Jul-13 7:04
harold aptroot25-Jul-13 7:04 
GeneralRe: FPS convertor Pin
_Q12_25-Jul-13 7:21
_Q12_25-Jul-13 7:21 
QuestionHow to authorize user by form authentication in mvc 4 Pin
nitin_ion23-Jul-13 2:35
nitin_ion23-Jul-13 2:35 
AnswerRe: How to authorize user by form authentication in mvc 4 Pin
Keith Barrow23-Jul-13 6:29
professionalKeith Barrow23-Jul-13 6:29 
QuestionGet string in a function using Socket server Pin
CodingHell22-Jul-13 21:02
CodingHell22-Jul-13 21:02 
I'm creating a socket server in which I'm getting a string like this.
C#
 IPEndPoint ipEnd = new IPEndPoint(IPAddress.Any, 5656);
            Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.IP);
            sock.Bind(ipEnd);
            sock.Listen(100);
            Socket clientSock = sock.Accept();
           
            while (true)
            {
                clientData = new byte[1024];
                receivedBytesLen = clientSock.Receive(clientData);
                clientDataInString = Encoding.ASCII.GetString(clientData, 0, receivedBytesLen);
 Console.WriteLine("Received Data{0}",clientDataInString);

if(clientDataInString.Contains("Start"))
{
.....any method call....

}
}


I want to use this clientDataInString or the received string in another method.

Like this:
C#
void abc()
{
if(clientDatainString.containg("A"))
{
Console.Writeline("Print A");


}
else if(clientDatainString.containg("B"))
{
Console.Writeline("Print B");

}


}


How can I use this String like this?
Please Suggest..
AnswerRe: Get string in a function using Socket server Pin
Richard MacCutchan22-Jul-13 21:09
mveRichard MacCutchan22-Jul-13 21:09 
GeneralRe: Get string in a function using Socket server Pin
CodingHell22-Jul-13 21:18
CodingHell22-Jul-13 21:18 
AnswerRe: Get string in a function using Socket server Pin
Richard MacCutchan22-Jul-13 23:39
mveRichard MacCutchan22-Jul-13 23:39 
AnswerRe: Get string in a function using Socket server Pin
lukeer22-Jul-13 23:39
lukeer22-Jul-13 23:39 
QuestionApplication Settings Pin
Midnight Ahri22-Jul-13 18:31
Midnight Ahri22-Jul-13 18:31 
QuestionRe: Application Settings Pin
Kenneth Haugland22-Jul-13 22:48
mvaKenneth Haugland22-Jul-13 22:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.