1
vote
2answers
41 views

How to lower the bool value in webservice response and XML file

In my application i have set of Web-Service which return Bool value in from of camel case i.e. "True" instead of "true" and "False" instead of "false" and same goes in XML file which is get from the ...
0
votes
2answers
32 views

How access bool from other form/script?

How can I access a bool from another form in c# ? e.g. I want access public bool isTrue = true; from Form1 in Form2. How to do this ? I only know how to do this in Unity3D Form1.isTrue = true; but ...
-1
votes
4answers
107 views

Simple way of checking if one of three booleans are true [closed]

I've tried using the following code, but as far as I can tell it only checks the first two variables. if (var1 || var2 || var3) { // Do something. }
0
votes
2answers
151 views

Public member 'value' on type 'Boolean' not found vb.net datatable

I am having an issue that is driving me insane and I'm not sure it's just not me being stupid I have a datatable where I add a boolean column ds.Tables(0).Columns.Add(New DataColumn("Select", ...
11
votes
2answers
272 views

Boolean is two bytes in .NET?

This question originates from here. I tried this statement in VS to see what happens: Len(Name <= 3) According to this answer and also this one, Boolean should consume 4 bytes. According to ...
1
vote
5answers
87 views

What does it mean when a method returns t > 1 as a boolean?

Can someone explain what the use/meaning is of the following return statement: t > 1; (see last if statement last method) the code is from a game called "Reversi" http://en.wikipedia.org/wiki/Reversi ...
0
votes
1answer
83 views

Size of bool in exported C function vs struct vs .Net marshaling

I'm not sure if this is a problem, but certainly a curiosity. I have a C DLL that exports a function taking a 32-bit integer and a boolean (stdbool.h). The exported function (stdcall) indicates the ...
2
votes
4answers
1k views

Strange behaviour of switch case with boolean value

My question is not about how to solve this error(I already solved it) but why is this error with boolean value. My function is private string NumberToString(int number, bool flag) { string str; ...
0
votes
3answers
707 views

Conversion from string “Y” to type 'Boolean' is not valid

I am learning visual basic online, however we just got a teacher switch and they have not replied to my question. So I figured I might as well ask it here. We where asked to make a computer ...
7
votes
6answers
894 views

Boolean properties in c#

This might be a dumb question, but the property below, will there ever be a situation where just getting it will cause an exception? Like if I did something like bool value = this.BatchValuation; - ...
1
vote
4answers
133 views

why value variable is not changed?

I have a Timer in my winForms and when the TimeSpan is 0 I set done as true and try check the value a thread. My code: Initial variables: private DateTime endTime = DateTime.UtcNow.AddMinutes(1); ...
3
votes
1answer
546 views

Passing a condition as a parameter

Is it possible to pass a condition as parameter as you do with actions? Here's an example. public void Test(Action action, Condition condition); ... Test( () => Environment.Exit(0), () => ...
4
votes
1answer
261 views

GetHashCode() from booleans only

I have an immutable class whose only field is a bool[] (size determined at runtime). How can I compute a good hash code of this class? Generally I would just call GetHashCode() on each field, and ...
2
votes
1answer
504 views

C# bool arrays, COM interop, and access violations

I have a COM component written in C++. One of the MIDL interfaces has a function defined like: HRESULT __stdcall GetValues( int length, [ref, size_is(*length)] VARIANT_BOOL out[]); ...
0
votes
3answers
81 views

.NET Form Ignores button.Enabled flag

I am trying to set a button to the Enabled state when certain conditions are met, but it doesn't seem to pay attention to when I set it to true. When I debug through the code, and put a watch on the ...
1
vote
1answer
685 views

Converting a boolean array into a hexadecimal number

Is there an easy way to convert an array of boolean values into 8-bit hexadecimal equivlents? For example, if I have bool[] BoolArray = new bool[] { true,false,true,true,false,false,false,true }; ...
4
votes
4answers
2k views

c# bool.change event

Can I setup an event listener so that when a bool changes a function is called?
1
vote
5answers
141 views

Variable name for a 2-valued variable passed as boolean?

What do you name a variable that is a boolean but can have 2 meaningful values out of N? Example: x can have values "red" or "blue". Calling it bRed, or isRed, is meaningful if he value is true , ...
9
votes
4answers
1k views

Performance: assign boolean value always or check value first?

I'm sure it is negligible, but given that I want to assign true to a boolean field from within a method, does this choice make any difference? If so, why? field = true; // could already be true, but ...
3
votes
3answers
230 views

boolean aggregation patterns in c#

I am writing a little lookup app, where i have a console handy for quick queries against a cache for sanity checks etc.. i.e. get SomeField=Blue this will than get all objects from cache ...
4
votes
2answers
184 views

Is the AutoResetEvent type an appropriate choice for an atomic switch?

Suppose I am processing a large amount of incoming data from multiple threads. I may want for this data to act as a trigger for a specific action when certain criteria are met. However, the action is ...
8
votes
4answers
441 views

What is the size of a Nullable<Int32>?

So, a couple of questions, actually: An int (Int32) is specified to be (obviously) 32 bits. What about an int? (Nullable<int>)? My gut tells me that it would be 32 bits for the integer plus 8 ...
4
votes
6answers
414 views

Which operator is faster: ?: or &&

While developing ASP.NET applications I often need to parse a boolean value given in string form, e.g. from a query string like ?visible=true I found two solutions to implement the parsing: bool ...
1
vote
4answers
445 views

AND Gate with delayed inputs in C#

I am trying to implement a boolean AND gate with multiple inputs. Each input has an integer identifying it. Input signals arrive randomly, and are stored at the gate (so it's not a pure AND gate, but ...
9
votes
6answers
3k views

Can .NET convert “Yes” & “No” to boolean without If?

You would think there would be a way using DirectCast, TryCast, CType etc but all of them seem to choke on it e.g.: CType("Yes", Boolean) You get: System.InvalidCastException - Conversion ...
2
votes
2answers
250 views

Why .NET Boolean has TrueLiteral and TrueString?

Why in Boolean type there are two fields with the same value? internal const int True = 1; internal const int False = 0; internal const string TrueLiteral = "True"; internal const string FalseLiteral ...
4
votes
6answers
2k views

How to serialize Nullable<bool>?

I want to serialize a nullable bool simply by converting it to a string public static string SerializeNullableBoolean(bool? b) { if (b == null) { return "null or -1 or .."; // What to ...
8
votes
8answers
6k views

Boolean and Math Expression Parser

I am writing an application that allows a user to enter a boolean expression. I need the ability to evaluate the entered boolean expression at runtime and am looking for both a parser and a ...
0
votes
5answers
253 views

Boolean bitmap operation in .NET?

I have two 8bpp bitmaps. I want to do a bitwise AND of one to the other, but I don't see any obvious way to do this in .NET. Is it possible to do this without using non-.NET methods? Thanks!
14
votes
6answers
8k views

Convert.ToBoolean and Boolean.Parse don't accept 0 and 1

Why was it decided that when parsing a boolean, 0/1 are not acceptable? When parsing any integer type value, it accepts numerical strings to be parsed. (And if .NET can parse the string "One hundred ...
3
votes
4answers
951 views

Two member enumeration vs. boolean value

This question has in the back of my mind for some time, sorry if it appears subjective. There are some disadvantages in using bool in public properties and constructors for data objects. Consider the ...
0
votes
3answers
299 views

How to optimize boolean operation?

I have two RadioButtons: r1 and r2. I have to enable both on Enabled = true and disable only unchecked on Enabled = false public bool Enabled { set { if(value) { r1.Enabled = ...
0
votes
2answers
115 views

How to determine the result of a logical operator on nullable booleans?

In C#, for example, when I compare two nullable booleans (bool?) I get the following results : true & null = null false & null = false true | null = true false | null = null The issue is ...
0
votes
1answer
808 views

Datagridview on RowLeave not assigning proper values to booleans

I have a DataViewGrid I populated from a DataTable in a query to a DB. While trying to capture the Row_Leave event, so I could properly update it, I can't seem to capture the latest value in boolean ...
5
votes
3answers
2k views

Convert complex bool condition from string to bool in .NET

I need to parse complex expresion from string to bool. It can only contain: * boolean values (true/false), * parenthesis, * AND/OR operands (&&, ||) Eg: bool.Parse("((true || false) ...
45
votes
7answers
22k views

Why does Boolean.ToString output “True” and not “true”

true.ToString() false.toString(); Output: True False Is there a valid reason for it being "True" and not "true"? It breaks when writing XML as XML's boolean type is lower case, and also isn't ...
13
votes
4answers
9k views

What is the best way to parse an XML boolean attribute (in .NET)?

An XML attribute declared as xs:boolean can acceptable be "true", "false", "0" or "1". However, in .NET, Boolean.Parse() will only accept "true" or "false". If it sees a "0" or "1", it throws a "Bad ...
21
votes
9answers
3k views

Why does boolean consume more memory than char?

Why does a Boolean consume 4 bytes and a char 2 bytes in the .NET framework? A Boolean should take up 1bit or at least be smaller than a char.
11
votes
7answers
17k views

What is the best way to convert an int or null to boolean value in an SQL query?

What is the best way to convert an int or null to boolean value in an SQL query, such that: Any non-null value is TRUE in the results Any null value is FALSE in the results
32
votes
3answers
16k views

Is a bool read/write atomic in C#

Is accessing a bool field atomic in C#? In particular, do I need to put a lock around: class Foo { private bool _bar; //... in some function on any thread (or many threads) _bar = true; ...