Click here to Skip to main content
15,912,578 members
Home / Discussions / C#
   

C#

 
AnswerRe: Get ALL the Records in NS .. plz , Help of any kind Pin
Dave Kreskowiak16-Oct-07 5:53
mveDave Kreskowiak16-Oct-07 5:53 
GeneralRe: Get ALL the Records in NS .. plz , Help of any kind Pin
Davids Maguire16-Oct-07 6:05
Davids Maguire16-Oct-07 6:05 
GeneralRe: Get ALL the Records in NS .. plz , Help of any kind Pin
Dave Kreskowiak16-Oct-07 6:27
mveDave Kreskowiak16-Oct-07 6:27 
GeneralRe: Get ALL the Records in NS .. plz , Help of any kind Pin
Davids Maguire16-Oct-07 6:34
Davids Maguire16-Oct-07 6:34 
GeneralRe: Get ALL the Records in NS .. plz , Help of any kind Pin
Dave Kreskowiak16-Oct-07 8:26
mveDave Kreskowiak16-Oct-07 8:26 
GeneralRe: Get ALL the Records in NS .. plz , Help of any kind Pin
led mike16-Oct-07 6:48
led mike16-Oct-07 6:48 
AnswerRe: Get ALL the Records in NS .. plz , Help of any kind Pin
led mike16-Oct-07 6:01
led mike16-Oct-07 6:01 
GeneralRe: Get ALL the Records in NS .. plz , Help of any kind Pin
Davids Maguire16-Oct-07 6:08
Davids Maguire16-Oct-07 6:08 
GeneralRe: Get ALL the Records in NS .. plz , Help of any kind Pin
led mike16-Oct-07 6:13
led mike16-Oct-07 6:13 
Questionhow to read txt file Pin
nomi khan16-Oct-07 5:38
nomi khan16-Oct-07 5:38 
AnswerRe: how to read txt file Pin
led mike16-Oct-07 5:54
led mike16-Oct-07 5:54 
AnswerRe: how to read txt file Pin
nomi khan16-Oct-07 5:57
nomi khan16-Oct-07 5:57 
AnswerRe: how to read txt file Pin
User 665816-Oct-07 6:04
User 665816-Oct-07 6:04 
QuestionHow do I give my c# app access to eventlog? Pin
Greg Ellis16-Oct-07 5:33
Greg Ellis16-Oct-07 5:33 
AnswerRe: How do I give my c# app access to eventlog? Pin
led mike16-Oct-07 5:53
led mike16-Oct-07 5:53 
GeneralRe: How do I give my c# app access to eventlog? Pin
Greg Ellis16-Oct-07 6:06
Greg Ellis16-Oct-07 6:06 
GeneralRe: How do I give my c# app access to eventlog? Pin
led mike16-Oct-07 6:16
led mike16-Oct-07 6:16 
QuestionConverting hexadecimal to string Pin
Exelioindia16-Oct-07 4:36
Exelioindia16-Oct-07 4:36 
AnswerRe: Converting hexadecimal to string Pin
Sandeep Kumar16-Oct-07 4:53
Sandeep Kumar16-Oct-07 4:53 
AnswerRe: Converting hexadecimal to string Pin
led mike16-Oct-07 4:58
led mike16-Oct-07 4:58 
AnswerRe: Converting hexadecimal to string Pin
Pete O'Hanlon16-Oct-07 5:05
mvePete O'Hanlon16-Oct-07 5:05 
QuestionDatabinding and List Pin
shark154616-Oct-07 4:22
shark154616-Oct-07 4:22 
QuestionRegex problem [modified] Pin
laserbaronen16-Oct-07 4:17
laserbaronen16-Oct-07 4:17 
Hi guys, im new here.. I've got a problem with a regular expression i am trying to make!
I want to match all '{' or '}' characters, that are <b>not</b> alone on a row.
There are, as always, an exception: there can be two brackets though, if there is one or less instructions between them.


### The following are examples that should not match with the regex:

<code>string myStr = new string { "Hi", "!" };

string myStr = new string {
"Hi", "!" };

int myProperty
{
get { return myInt; }
set { myInt = value; }
}</code>

### the following are examples that should match:
<code>public class myClass {

internal int MyMethod(int input){

public int myProperty { // <- this line
get { log(DateTime.Now); return myInt; } // <- this line too</code>
etc... Hopefully you get what I am trying to do ^^

Anyways, this is what i have got now
<code>(?mFrown | :( Frown | :( <!^\s*?)[{}])|(?:[{}](?!\s*?$)))</code>
which only matches the ones that are not alone on a row, please help me! ^^


fafafa, ringakta icke sådant som bringa ack så naggande högönsklig välmåga å baronens ära.
AnswerRe: Regex problem Pin
snorkie16-Oct-07 4:57
professionalsnorkie16-Oct-07 4:57 
GeneralRe: Regex problem Pin
laserbaronen16-Oct-07 5:29
laserbaronen16-Oct-07 5:29 

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.