Tagged Questions

19
votes
6answers
21k views

How to get IntPtr from byte[] in C#

I want to pass a byte[] to a method takes a IntPtr Parameter in c#, is that possible and how.
18
votes
10answers
36k views

C# How do I convert a decimal to an int?

How do I convert a decimal to an int? Ta
14
votes
4answers
1k views

.NET - Server-side Markdown to HTML Conversion

What is a good open source .NET library to convert markdown to HTML on the server? If this has been answered somewhere else please point me to the post. Thanks.
13
votes
3answers
2k views

C# non-boxing conversion of generic enum to int?

Given a generic parameter TEnum which always will be an enum type, is there any way to cast from TEnum to int without boxing/unboxing? See this example code. This will box/unbox the value ...
8
votes
2answers
198 views

How do I convert from a .NET DateTime to an IronPython datetime?

I'm calling an IronPython script and passing it a .NET object that contains a DateTime structure. I'm trying to use IronPython's JSON support to serialize the object as JSON. Everything works great ...
8
votes
6answers
930 views

Programmatically clean Word-generated HTML while preserving styles?

In my current company, we have this decade old...let's call it a "Hello World" application. While wanting to create a newer version of it, we also want to preserve older entries. These older entries ...
7
votes
7answers
280 views

C# Convert object to Decimal

I'm trying to convert an object with the value 0.39999999999999997 to a decimal variable without losing the precision. object d = 0.39999999999999997; I've tried the following methods. decimal ...
6
votes
3answers
129 views

Convert numeric types: Which style to use?

Let's say I want to convert a Double x to a Decimal y. There's a lot of ways to do that: 1. var y = Convert.ToDecimal(x); // Dim y = Convert.ToDecimal(x) 2. var y = new Decimal(x); // Dim ...
6
votes
4answers
283 views

Converting an IP address to a number:

Question: When I convert the IP address 192.168.115.67 to a number, is it done like this: 192*2563 + 168*2562+115*2561+67*2560 = 3232265027 or like this: 192*2560 + 168*2561+115*2562+67*2563 = ...
6
votes
6answers
107 views

How can one check for “safe” conversions between value types in .NET?

Back to the basics... For reference types, one can do this: SomeType someObject = firstObject as SomeType; if (someObject == null) { // Handle the situation ...
6
votes
5answers
3k views

All Enum items to string (C#)

How to convert all elements from enum to string? Assume I have: public enum LogicOperands { None, Or, And, Custom } And what I want to archive is something like: string LogicOperandsStr = ...
5
votes
5answers
379 views

.NET component for color PDF to grayscale conversion

Currently i use Ghostscript to convert color PDF's to grayscale PDF's. Now i'm looking for reliable .NET commercial or not commercial component/library for ghostscript replacement. I googled and I ...
5
votes
4answers
354 views

How to convert System.Decimal bits to string in C#?

I'd like to be able to get the bits from a System.Decimal value and then convert that to the string representation of the value, much like Decimal.ToString() would do but I have a hard time coming up ...
5
votes
8answers
2k views

Convert GUID to int

How do i convert Guid.NewGuid() to int?
5
votes
3answers
204 views

Is there .Net TypeConverter equivalent in Java

In .NET when I had a "value" that could exist as multiple types I could easily use a TypeConverter for switching between those types (currency types, xml data vs object representation, ect). In Java, ...
5
votes
3answers
1k views

Is there an equivalent to out-of-process COM EXE in .NET?

One of the nice things about COM/ActiveX was the out-of-process EXE. You could have an EXE which exposed methods and properties in a form usable by both other processes, including VBScript and ...
5
votes
4answers
4k views

How do I convert a DataTable to an IDatareader?

We all know that DataReaders are quicker than DataTables since the a DataReader is used in the construction of a DataTable. Therefore given that I already have a DataTable.... Why would I want to ...
5
votes
7answers
2k views

Free tool or library to convert Tiff files to pdf in .Net

Does any one know of a free tool or library to convert multi page tiffs to pdf in Asp.Net 1.1?
5
votes
5answers
9k views

C#: Convert COMP-3 Packed Decimal to Human-Readable Value

I have a series of ASCII flat files coming in from a mainframe to be processed by a C# application. A new feed has been introduced with a Packed Decimal (COMP-3) field, which needs to be converted to ...
4
votes
1answer
106 views

Are there any actual(breaking) changes between 2008 and 2010 project files?

A while back I accidentally converted a project file to Visual Studio 2010(of course, no source control). Instead of recreating the project file though(which would have only taken about 10 or 15 ...
4
votes
1answer
487 views

Convert 6 digit number to time in asp.net

Is there a function in .net that will take a number such as 134,501 and convert it to time? That time would be 1:45:01 pm. I was hoping i didn't have to reinvent the wheel for this.
4
votes
3answers
296 views

Why is the decimal SqlParameter getting mangled?

I'm sending a decimal value to a sproc in the following way: SqlParameter meh = new SqlParameter("Foo", SqlDbType.Decimal); meh.Value = "0.00001"; meh.Precision = ((System.Byte)(12)); meh.Scale = ...
4
votes
6answers
168 views

implicit or explicit conversion from T to T[]

Is there a way to implement a generic implicit or explicit converter for anything to an array of anything, something like this: public static implicit operator T[](T objToConvert) { return new ...
4
votes
3answers
747 views

Programmatically choosing image conversion format to JPEG or PNG for Silverlight display

I have a project where I need to convert a large number of image types to be displayable in a Silverlight app - TIFF, GIF, WMF, EMF, BMP, DIB, etc. I can do these conversions on the server before ...
4
votes
2answers
186 views

stack.ToList() in .NET - order of elements?

When using the .ToList() extension method on a Stack<T>, is the result the same as popping each element and adding to a new list (reverse of what was pushed)? If so, is this because it really ...
4
votes
7answers
6k views

Convert a single hex character to its byte value in C#

This will convert 1 hex character to its integer value, but needs to construct a (sub) string. Convert.ToInt32(serializedString.Substring(0,1), 16); Does .NET have a built-in way to convert a ...
4
votes
3answers
3k views

Different answer when converting a Double to an Int - Java vs .Net

In C# if I want to convert a double (1.71472) to an int then I get the answer 2. If I do this in Java using intValue() method, I get 1 as the answer. Does Java round down on conversions? Why do the ...
3
votes
3answers
130 views

Converting a CollectionChanged event handler line from C# to VB.net

I've used the developerfusion C# to VB conversion tool to convert Brad Smith's ComboTreeBox project and I'm having troubles on, as is fairly normal for me and C#-to-VB conversions, an event handler. ...
3
votes
6answers
227 views

Why c# decimals can't be initialized without the M suffix?

public class MyClass { public const Decimal CONSTANT = 0.50; // ERROR CS0664 } produces this error: error CS0664: Literal of type double cannot be implicitly converted to type ...
3
votes
4answers
233 views

Does C# textbox save an all number text as a long or string?

I have a brief discussion with my teammate regarding this. He says, if I enter a number in textbox, and try to use the value later on using textbox.text or val(textbox.text), I will not need to parse ...
3
votes
2answers
99 views

Override/Handle My Own Type Conversions In .Net [closed]

Possible Duplicate: Is there a way to define an implicit conversion operator in VB.NET? I can't remember ever seeing or hearing of anyone do this; but now I'm in a situation where I think ...
3
votes
3answers
172 views

Problem converting array of struct from C++ to C#

I want to convert this C++ code to C#: typedef struct consoleCommand_s { char* cmd ; void (*function)() ; } consoleCommand_t ; static consoleCommand_t commands[] = { ...
3
votes
3answers
607 views

.NET: Interface Problem VB.net Getter Only Interface

Why does an interface override a class definition and violate class encapsulation? I have included two samples below, one in C# and one in VB.net? VB.net Module Module1 Sub Main() Dim ...
3
votes
3answers
152 views

.Net (C#) Enum rewritten to java

I have an Enum in .Net. How can I rewrite this Enum in java? Here is the Enum: public enum AdCategoryType : short { ForSale = 1, ForBuy = 2, ForRent = 8, WantingForRent = 16, ...
3
votes
1answer
163 views

Is there a need to convert a VC#2008 Express solution to a VS2008 Professional solution?

I've been using Visual C# 2008 Express for a good while now, but after comparing it with Visual Studio 2008 Professional, I've decided to 'upgrade' to Visual Studio 2008 Professional, which is easy ...
3
votes
3answers
709 views

How to convert value of Generic Type Argument to a concrete type?

I am trying to convert the value of the generic type parameter T value into integer after making sure that T is in fact integer: public class Test { void DoSomething<T>(T value) { ...
3
votes
7answers
351 views

.NET component for conversion to PDF

I am looking for .NET component to convert different files into PDF format. Right now I need to be able to convert programmatically doc, xls and TIFF files to PDF. But I may need to deal with more ...
3
votes
1answer
204 views

Conversion of text to unicode strings

I have to process JSON files that looks like this: \u0432\u043b\u0430\u0434\u043e\u043c <b>\u043f\u0443\u0442\u0438\u043c<\/b> \u043d\u0430\u0447 Unfortunately, I'm not sure how this ...
3
votes
2answers
135 views

How to convert from System.Int32 to System.UInt16 in F#

Is there a better (shorter?) way than the following? let cpucount = System.UInt16.Parse( reader.GetInt32(3).ToString() )
3
votes
3answers
1k views

manually converting between ASCII and .NET characters

I am working on writing some code to scrub user input to my ASP.NET site. I need to scrub input to remove all references to ASCII characters 145, 146, 147, 148 which are occasionally getting input ...
3
votes
3answers
2k views

Converting TIFF files to PNG in .Net

I have to build an application in .Net (3.5) to pick up a TIFF file saved from another piece of software and convert it into a PNG so that it can be rendered easily in Internet Explorer. Does anyone ...
3
votes
3answers
1k views

Convert BitmapImage to grayscale, and keep alpha channel

I'm having an issue with converting a BitmapImage (WPF) to grayscale, whilst keeping the alpha channel. The source image is a PNG. The MSDN article here works fine, but it removes the alpha channel. ...
3
votes
3answers
2k views

Convert .Net Color Objects to HEX codes and Back

As per the question title, How could I take a hex code and convert it to a .Net Color object, and do it the other way? I googled and keep getting the same way which doesn't work. ...
3
votes
4answers
1k views

Convert EPS/PDF to JPEG/PNG?

I need to be able to take EPS and PDF's and convert them to JPEG/PNG on the fly to display on a website - using .net code. I used ADC PDF from WebSupergoo for this like 3 years ago, and it worked ...
3
votes
3answers
2k views

Convert to a Nullable<T> from a string using Reflection

How can I convert TO a Nullable from a String using reflection? I have the following code to convert TO almost any value type given almost any value. There is quite a bit of code above this to use ...
3
votes
4answers
2k views

Convert Float that has period instead of comma?

I have data from a table in a database (string) that contain text and price. I extract the price from the data but my problem is that sometime I can Convert it to float and sometime not. I have ...
3
votes
5answers
606 views

Pitfalls for converting a .net 1.1 solution to .net 2.0

In this question superwiren asks about the pitfalls for converting a .net 2.0 solution to .net 3.5. What about .net 1.1 to .net 2.0? Is 2.0 fully backwards compatible with 1.1?
3
votes
4answers
1k views

Why does Convert.ToDouble(string) round?

For example, Convert.ToDouble("0.1234567890123456789") = 0.123456789012346 What is the maximum number of significant figures? Couldn't find it in the docs.
3
votes
6answers
6k views

Fastest way to convert a possibly-null-terminated ascii byte[] to a string?

I need to convert a (possibly) null terminated array of ascii bytes to a string in C# and the fastest way I've found to do it is by using my UnsafeAsciiBytesToString method shown below. This method ...
2
votes
0answers
40 views

C# .NET RTF to HTML Convertor, and HTML to RTF Convertor Library

I need a library for my ASP.NET MVC3 Application that can convert to and from HTML and RTF. There are a lot out there that do just one, converting RTF to HTML. But I need to be able to go backwards ...

1 2 3 4