Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~612 People Reached
About Me

●๋• !!!∂ση'Ñ‚ ωαℓк αѕ ιƒ уσυ яυℓє тнє ωσяℓ∂,ωαℓк αѕ ιƒ Ï… ∂ση'Ñ‚ ¢αяє ωнσ яυℓєѕ тнє ωσяℓ∂!тнαт'Ñ• ¢αℓℓє∂ αттιтυ∂є!!! NeVa Explain y0uRs3LF...YouR FrnDz Don't…

Favorite Forums
Favorite Tags
Member Avatar for mIND.dEcEpToR

this is a very very basic question but while coding i got stuck. in c++ we use the statement: if (back_tracking(0, y + 1)) to check some condition but while coding in c# it says cannot convert implicitely int to bool! anybody kindly tell me whats the workaround in c#

Member Avatar for Momerath
0
151
Member Avatar for mIND.dEcEpToR

this is how my data in txt file: 1--2--3-- 3-4-4-5-- -7-3-4--- 7--5--3-6 --7---4-- 3-2--4-5- ------3-- 2-6--7--- 4---4--3- is my c# code to do file reading with the display too: public void populate_grid_by_file() { int counter = 0; string line; // Read the file and display it line by line. System.IO.StreamReader …

Member Avatar for tinstaafl
0
190
Member Avatar for mIND.dEcEpToR

public string getContent(string webAddress) { HtmlAgilityPack.HtmlWeb web = new HtmlAgilityPack.HtmlWeb(); HtmlDocument doc = web.Load(webAddress); return string.Join(" ", doc.DocumentNode.Descendants().Select(x => x.InnerText)); } Am using this function trying to check what does the function do! But am getting the exception which tells me the function Decendants does not exist in the current …

Member Avatar for Momerath
0
175
Member Avatar for mIND.dEcEpToR

How can I programatically and accurately detect the touch/slide made by a user's touch on an android phone? I want this to be used as suppose I have two android devices synced with each other. Both of them have anything opened suppose pdf file, music file video file. Then if …

1
96